alistair23-linux/arch/frv/include/asm/ioctls.h
Jeff Mahoney 4735d23495 ioctl: Use asm-generic/ioctls.h on frv (enables termiox)
This patch converts frv to use asm-generic/ioctls.h instead of its
own version.

The differences between the arch-specific version and the generic
version are as follows:

- FRV defines its own value for FIOQSIZE, asm-generic/ioctls.h keeps it
- FRV defines TIOCTTYGSTRUCT, kept in arch-specific version
- The generic version provides TIOCGRS485 and TIOCSRS485 but they
  are unused by any driver available for this architecture.
- The generic version adds support for termiox

Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2010-10-22 10:20:00 -07:00

11 lines
196 B
C

#ifndef __ASM_IOCTLS_H__
#define __ASM_IOCTLS_H__
#define TIOCTTYGSTRUCT 0x5426 /* For debugging only */
#define FIOQSIZE 0x545E
#include <asm-generic/ioctls.h>
#endif /* __ASM_IOCTLS_H__ */