/***************************************************************************** * * Copyright (c) 1997-2002 Inside Out Networks, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * * ******************************************************************************/ #ifndef _IO_TI_IOCTL_H_ #define _IO_TI_IOCTL_H_ /* Special IO Networks ioctls */ #define ION_IOC_MAGIC 'E' /* "Edgeport" */ #define ION_SETMODE _IOW(ION_IOC_MAGIC,0x01, unsigned int) /* Set Edgeport 4S mode, e.g: RS232, RS422... */ #define ION_GETMODE _IOR(ION_IOC_MAGIC,0x02, unsigned int) /* Get Edgeport 4S mode, e.g: RS232, RS422... */ #endif