2008-10-23 13:26:29 +08:00
|
|
|
#ifndef _ASM_X86_PARPORT_H
|
|
|
|
#define _ASM_X86_PARPORT_H
|
2007-10-15 19:57:47 +08:00
|
|
|
|
2008-03-23 16:03:01 +08: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 19:57:47 +08:00
|
|
|
{
|
2008-03-23 16:03:01 +08:00
|
|
|
return parport_pc_find_isa_ports(autoirq, autodma);
|
2007-10-15 19:57:47 +08:00
|
|
|
}
|
|
|
|
|
2008-10-23 13:26:29 +08:00
|
|
|
#endif /* _ASM_X86_PARPORT_H */
|