5dd42c262b
All users have been converted. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
18 lines
318 B
C
18 lines
318 B
C
#ifndef IOCTL32_H
|
|
#define IOCTL32_H 1
|
|
|
|
#include <linux/compiler.h> /* for __deprecated */
|
|
|
|
struct file;
|
|
|
|
typedef int (*ioctl_trans_handler_t)(unsigned int, unsigned int,
|
|
unsigned long, struct file *);
|
|
|
|
struct ioctl_trans {
|
|
unsigned long cmd;
|
|
ioctl_trans_handler_t handler;
|
|
struct ioctl_trans *next;
|
|
};
|
|
|
|
#endif
|