1*b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */ 27f30491cSTony Luck /* 37f30491cSTony Luck * parport.h: platform-specific PC-style parport initialisation 47f30491cSTony Luck * 57f30491cSTony Luck * Copyright (C) 1999, 2000 Tim Waugh <tim@cyberelk.demon.co.uk> 67f30491cSTony Luck * 77f30491cSTony Luck * This file should only be included by drivers/parport/parport_pc.c. 87f30491cSTony Luck */ 97f30491cSTony Luck 107f30491cSTony Luck #ifndef _ASM_IA64_PARPORT_H 117f30491cSTony Luck #define _ASM_IA64_PARPORT_H 1 127f30491cSTony Luck 135b5e76e9SGreg Kroah-Hartman static int parport_pc_find_isa_ports(int autoirq, int autodma); 147f30491cSTony Luck parport_pc_find_nonpci_ports(int autoirq,int autodma)155b5e76e9SGreg Kroah-Hartmanstatic int parport_pc_find_nonpci_ports(int autoirq, int autodma) 167f30491cSTony Luck { 177f30491cSTony Luck return parport_pc_find_isa_ports(autoirq, autodma); 187f30491cSTony Luck } 197f30491cSTony Luck 207f30491cSTony Luck #endif /* _ASM_IA64_PARPORT_H */ 21