2008-10-23 05:26:29 +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-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_PARPORT_H */
|