4735d23495
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>
11 lines
196 B
C
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__ */
|
|
|