blob: dc96dda479d64045969a583a8737b8cb0e0884f6 [file] [log] [blame]
Christopher Ferris25981132017-11-14 16:53:49 -08001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Ben Cheng30692c62013-10-15 18:26:18 -07002#ifndef __LINUX_RAW_H
3#define __LINUX_RAW_H
4
5#include <linux/types.h>
6
7#define RAW_SETBIND _IO( 0xac, 0 )
8#define RAW_GETBIND _IO( 0xac, 1 )
9
10struct raw_config_request
11{
12 int raw_minor;
13 __u64 block_major;
14 __u64 block_minor;
15};
16
17#define MAX_RAW_MINORS CONFIG_MAX_RAW_DEVS
18
19#endif /* __LINUX_RAW_H */