mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
d838016af3
This patch converts s390 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: - S390 defines its own value for FIOQSIZE, asm-generic/ioctls.h keeps it - The generic version adds TIOCGRS485 and TIOCGRS485, which are unused by any driver available on this architecture - The generic version adds support for termiox Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Jeff Mahoney <jeffm@suse.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
9 lines
128 B
C
9 lines
128 B
C
#ifndef __ARCH_S390_IOCTLS_H__
|
|
#define __ARCH_S390_IOCTLS_H__
|
|
|
|
#define FIOQSIZE 0x545E
|
|
|
|
#include <asm-generic/ioctls.h>
|
|
|
|
#endif
|