repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PATCH] clocksource: fix resume logic
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
include
/
linux
/
ioctl32.h
blob
948809d999177867fb0820236f32e59a3d7ce52a
1
#ifndef IOCTL32_H
2
#define IOCTL32_H 1
3
4
#include <linux/compiler.h>
/* for __deprecated */
5
6
struct
file
;
7
8
typedef
int
(*
ioctl_trans_handler_t
)(
unsigned int
,
unsigned int
,
9
unsigned long
,
struct
file
*);
10
11
struct
ioctl_trans
{
12
unsigned long
cmd
;
13
ioctl_trans_handler_t handler
;
14
struct
ioctl_trans
*
next
;
15
};
16
17
#endif