File: bios32.h

package info (click to toggle)
kernel-source-2.2.1 2.2.1-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 61,788 kB
  • ctags: 188,316
  • sloc: ansic: 1,114,164; asm: 49,922; makefile: 8,185; sh: 1,745; perl: 856; tcl: 409; lisp: 218; cpp: 186; awk: 133; sed: 72
file content (34 lines) | stat: -rw-r--r-- 882 bytes parent folder | download | duplicates (11)
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
33
34
/*
 *	This is only a stub file to make drivers not yet converted to the new
 *	PCI probing mechanism work. [mj]
 */

#ifndef BIOS32_H
#define BIOS32_H

#include <linux/pci.h>

#warning This driver uses the old PCI interface, please fix it (see Documentation/pci.txt)

extern inline int __pcibios_read_irq(unsigned char bus, unsigned char dev_fn, unsigned char *to)
{
	struct pci_dev *pdev = pci_find_slot(bus, dev_fn);
	if (!pdev) {
		*to = 0;
		return PCIBIOS_DEVICE_NOT_FOUND;
	} else {
		*to = pdev->irq;
		return PCIBIOS_SUCCESSFUL;
	}
}

extern inline int __pcibios_read_config_byte(unsigned char bus,
	unsigned char dev_fn, unsigned char where, unsigned char *to)
{
	return pcibios_read_config_byte(bus, dev_fn, where, to);
}

#define pcibios_read_config_byte(b,d,w,p) \
	(((w) == PCI_INTERRUPT_LINE) ? __pcibios_read_irq(b,d,p) : __pcibios_read_config_byte(b,d,w,p))

#endif