mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 00:52:01 +00:00
30b4b274e4
This patch converts h8300 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: - H8300 defines its own value for FIOQSIZE, asm-generic/ioctls.h keeps it - The generic version adds TIOCSRS485 and TIOGSRS485, but are unused by any driver available on this architecture. - The generic version adds support for termiox Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Jeff Mahoney <jeffm@suse.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
9 lines
160 B
C
9 lines
160 B
C
#ifndef __ARCH_H8300_IOCTLS_H__
|
|
#define __ARCH_H8300_IOCTLS_H__
|
|
|
|
#define FIOQSIZE 0x545E
|
|
|
|
#include <asm-generic/ioctls.h>
|
|
|
|
#endif /* __ARCH_H8300_IOCTLS_H__ */
|