diff options
Diffstat (limited to 'fs/compat_ioctl.c')
| -rw-r--r-- | fs/compat_ioctl.c | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c index 5ead3763bba..63ae8583146 100644 --- a/fs/compat_ioctl.c +++ b/fs/compat_ioctl.c @@ -601,8 +601,11 @@ static int ioc_settimeout(unsigned int fd, unsigned int cmd,  }  /* Bluetooth ioctls */ -#define HCIUARTSETPROTO	_IOW('U', 200, int) -#define HCIUARTGETPROTO	_IOR('U', 201, int) +#define HCIUARTSETPROTO		_IOW('U', 200, int) +#define HCIUARTGETPROTO		_IOR('U', 201, int) +#define HCIUARTGETDEVICE	_IOR('U', 202, int) +#define HCIUARTSETFLAGS		_IOW('U', 203, int) +#define HCIUARTGETFLAGS		_IOR('U', 204, int)  #define BNEPCONNADD	_IOW('B', 200, int)  #define BNEPCONNDEL	_IOW('B', 201, int) @@ -1328,6 +1331,8 @@ COMPATIBLE_IOCTL(HCISETLINKPOL)  COMPATIBLE_IOCTL(HCISETLINKMODE)  COMPATIBLE_IOCTL(HCISETACLMTU)  COMPATIBLE_IOCTL(HCISETSCOMTU) +COMPATIBLE_IOCTL(HCIBLOCKADDR) +COMPATIBLE_IOCTL(HCIUNBLOCKADDR)  COMPATIBLE_IOCTL(HCIINQUIRY)  COMPATIBLE_IOCTL(HCIUARTSETPROTO)  COMPATIBLE_IOCTL(HCIUARTGETPROTO)  |