Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * parport.h: platform-specific PC-style parport initialisation
0004  *
0005  * Copyright (C) 1999, 2000  Tim Waugh <tim@cyberelk.demon.co.uk>
0006  *
0007  * This file should only be included by drivers/parport/parport_pc.c.
0008  */
0009 
0010 #ifndef _ASM_AXP_PARPORT_H
0011 #define _ASM_AXP_PARPORT_H 1
0012 
0013 static int parport_pc_find_isa_ports (int autoirq, int autodma);
0014 static int parport_pc_find_nonpci_ports (int autoirq, int autodma)
0015 {
0016     return parport_pc_find_isa_ports (autoirq, autodma);
0017 }
0018 
0019 #endif /* !(_ASM_AXP_PARPORT_H) */