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