2008-06-18 15:08:48 +00:00
|
|
|
#ifndef ASM_X86__PARPORT_H
|
|
|
|
#define ASM_X86__PARPORT_H
|
2007-10-15 11:57:47 +00:00
|
|
|
|
2008-03-23 08:03:01 +00:00
|
|
|
static int __devinit parport_pc_find_isa_ports(int autoirq, int autodma);
|
|
|
|
static int __devinit parport_pc_find_nonpci_ports(int autoirq, int autodma)
|
2007-10-15 11:57:47 +00:00
|
|
|
{
|
2008-03-23 08:03:01 +00:00
|
|
|
return parport_pc_find_isa_ports(autoirq, autodma);
|
2007-10-15 11:57:47 +00:00
|
|
|
}
|
|
|
|
|
2008-06-18 15:08:48 +00:00
|
|
|
#endif /* ASM_X86__PARPORT_H */
|