repo.or.cz
/
linux-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
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6.git]
/
include
/
linux
/
fd.h
blob
69275bccc3e486d53ca3a36a922dba8ea8908a66
1
#ifndef _LINUX_FD_H
2
#define _LINUX_FD_H
3
4
#include <uapi/linux/fd.h>
5
6
#ifdef CONFIG_COMPAT
7
#include <linux/compat.h>
8
9
struct
compat_floppy_struct
{
10
compat_uint_t size
;
11
compat_uint_t sect
;
12
compat_uint_t head
;
13
compat_uint_t track
;
14
compat_uint_t stretch
;
15
unsigned char
gap
;
16
unsigned char
rate
;
17
unsigned char
spec1
;
18
unsigned char
fmt_gap
;
19
const
compat_caddr_t name
;
20
};
21
22
#define FDGETPRM32 _IOR(2, 0x04, struct compat_floppy_struct)
23
#endif
24
#endif