]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/fd.h
soc: renesas: r8a77970-sysc: Correct names of A2DP/A2CN power domains
[mirror_ubuntu-bionic-kernel.git] / include / linux / fd.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _LINUX_FD_H
3#define _LINUX_FD_H
4
607ca46e 5#include <uapi/linux/fd.h>
1da177e4 6
390192b3 7#ifdef CONFIG_COMPAT
719c0c59
JS
8#include <linux/compat.h>
9
390192b3
JS
10struct compat_floppy_struct {
11 compat_uint_t size;
12 compat_uint_t sect;
13 compat_uint_t head;
14 compat_uint_t track;
15 compat_uint_t stretch;
16 unsigned char gap;
17 unsigned char rate;
18 unsigned char spec1;
19 unsigned char fmt_gap;
20 const compat_caddr_t name;
21};
22
23#define FDGETPRM32 _IOR(2, 0x04, struct compat_floppy_struct)
24#endif
719c0c59 25#endif