summaryrefslogtreecommitdiffstats
path: root/include/asm-sparc64/vga.h
blob: b5471211945474a759eef253e318c50d1ae5a39c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 *	Access to VGA videoram
 *
 *	(c) 1998 Martin Mares <mj@ucw.cz>
 */

#ifndef _LINUX_ASM_VGA_H_
#define _LINUX_ASM_VGA_H_

#include <asm/types.h>

#define VT_BUF_HAVE_RW

static inline void scr_writew(u16 val, u16 *addr)
{
	if ((long) addr < 0)
		*addr = val;
	else
		writew(val, (unsigned long) addr);
}

static inline u16 scr_readw(const u16 *addr)
{
	if ((long) addr < 0)
		return *addr;
	else
		return readw((unsigned long) addr);
}

#define VGA_MAP_MEM(x) (x)

#endif
<jbarnes@virtuousgeek.org>2009-02-04 17:22:28 -0800 commit49c968111aee4a463d3247937b63efa63a65f378 (patch) tree45102dd69858263623dae0db56f67a09a7b15c5c /drivers/pci/pci.c parentcbbc2f6b0d438f80831c20124137ea92f0e5149b (diff)
PCI PM: Read power state from device after trying to change it on resume
pci_restore_standard_config() unconditionally changes current_state to PCI_D0 after attempting to change the device's power state, but it should rather read the actual current power state from the device. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pci.c')