Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
0002 /*
0003  *  NET3    PLIP tuning facilities for the new Niibe PLIP.
0004  *
0005  *  This program is free software; you can redistribute it and/or
0006  *  modify it under the terms of the GNU General Public License
0007  *  as published by the Free Software Foundation; either version
0008  *  2 of the License, or (at your option) any later version.
0009  *
0010  */
0011  
0012 #ifndef _LINUX_IF_PLIP_H
0013 #define _LINUX_IF_PLIP_H
0014 
0015 #include <linux/sockios.h>
0016 
0017 #define SIOCDEVPLIP SIOCDEVPRIVATE
0018 
0019 struct plipconf {
0020     unsigned short pcmd;
0021     unsigned long  nibble;
0022     unsigned long  trigger;
0023 };
0024 
0025 #define PLIP_GET_TIMEOUT    0x1
0026 #define PLIP_SET_TIMEOUT    0x2
0027 
0028 #endif