Fix some style bugs. The long line is in a chunk of code that's
being rewritten, though. Submitted by: bde
This commit is contained in:
parent
a7623b801d
commit
c36837a8d8
sys
@ -34,18 +34,18 @@
|
||||
/*
|
||||
* disk
|
||||
*/
|
||||
#define LINUX_BLKROSET 0x125d
|
||||
#define LINUX_BLKROGET 0x125e
|
||||
#define LINUX_BLKRRPART 0x125f
|
||||
#define LINUX_BLKGETSIZE 0x1260
|
||||
#define LINUX_BLKFLSBUF 0x1261
|
||||
#define LINUX_BLKRASET 0x1262
|
||||
#define LINUX_BLKRAGET 0x1263
|
||||
#define LINUX_BLKFRASET 0x1264
|
||||
#define LINUX_BLKFRAGET 0x1265
|
||||
#define LINUX_BLKSECTSET 0x1266
|
||||
#define LINUX_BLKSECTGET 0x1267
|
||||
#define LINUX_BLKSSZGET 0x1268
|
||||
#define LINUX_BLKROSET 0x125d
|
||||
#define LINUX_BLKROGET 0x125e
|
||||
#define LINUX_BLKRRPART 0x125f
|
||||
#define LINUX_BLKGETSIZE 0x1260
|
||||
#define LINUX_BLKFLSBUF 0x1261
|
||||
#define LINUX_BLKRASET 0x1262
|
||||
#define LINUX_BLKRAGET 0x1263
|
||||
#define LINUX_BLKFRASET 0x1264
|
||||
#define LINUX_BLKFRAGET 0x1265
|
||||
#define LINUX_BLKSECTSET 0x1266
|
||||
#define LINUX_BLKSECTGET 0x1267
|
||||
#define LINUX_BLKSSZGET 0x1268
|
||||
|
||||
#define LINUX_IOCTL_DISK_MIN LINUX_BLKROSET
|
||||
#define LINUX_IOCTL_DISK_MAX LINUX_BLKSSZGET
|
||||
|
@ -56,19 +56,19 @@
|
||||
#include <i386/linux/linux_proto.h>
|
||||
#include <i386/linux/linux_util.h>
|
||||
|
||||
static linux_ioctl_function_t linux_ioctl_disk;
|
||||
static linux_ioctl_function_t linux_ioctl_cdrom;
|
||||
static linux_ioctl_function_t linux_ioctl_console;
|
||||
static linux_ioctl_function_t linux_ioctl_disk;
|
||||
static linux_ioctl_function_t linux_ioctl_socket;
|
||||
static linux_ioctl_function_t linux_ioctl_sound;
|
||||
static linux_ioctl_function_t linux_ioctl_termio;
|
||||
|
||||
static struct linux_ioctl_handler disk_handler =
|
||||
{ linux_ioctl_disk, LINUX_IOCTL_DISK_MIN, LINUX_IOCTL_DISK_MAX };
|
||||
static struct linux_ioctl_handler cdrom_handler =
|
||||
{ linux_ioctl_cdrom, LINUX_IOCTL_CDROM_MIN, LINUX_IOCTL_CDROM_MAX };
|
||||
static struct linux_ioctl_handler console_handler =
|
||||
{ linux_ioctl_console, LINUX_IOCTL_CONSOLE_MIN, LINUX_IOCTL_CONSOLE_MAX };
|
||||
static struct linux_ioctl_handler disk_handler =
|
||||
{ linux_ioctl_disk, LINUX_IOCTL_DISK_MIN, LINUX_IOCTL_DISK_MAX };
|
||||
static struct linux_ioctl_handler socket_handler =
|
||||
{ linux_ioctl_socket, LINUX_IOCTL_SOCKET_MIN, LINUX_IOCTL_SOCKET_MAX };
|
||||
static struct linux_ioctl_handler sound_handler =
|
||||
@ -76,9 +76,9 @@ static struct linux_ioctl_handler sound_handler =
|
||||
static struct linux_ioctl_handler termio_handler =
|
||||
{ linux_ioctl_termio, LINUX_IOCTL_TERMIO_MIN, LINUX_IOCTL_TERMIO_MAX };
|
||||
|
||||
DATA_SET(linux_ioctl_handler_set, disk_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, cdrom_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, console_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, disk_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, socket_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, sound_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, termio_handler);
|
||||
|
@ -34,18 +34,18 @@
|
||||
/*
|
||||
* disk
|
||||
*/
|
||||
#define LINUX_BLKROSET 0x125d
|
||||
#define LINUX_BLKROGET 0x125e
|
||||
#define LINUX_BLKRRPART 0x125f
|
||||
#define LINUX_BLKGETSIZE 0x1260
|
||||
#define LINUX_BLKFLSBUF 0x1261
|
||||
#define LINUX_BLKRASET 0x1262
|
||||
#define LINUX_BLKRAGET 0x1263
|
||||
#define LINUX_BLKFRASET 0x1264
|
||||
#define LINUX_BLKFRAGET 0x1265
|
||||
#define LINUX_BLKSECTSET 0x1266
|
||||
#define LINUX_BLKSECTGET 0x1267
|
||||
#define LINUX_BLKSSZGET 0x1268
|
||||
#define LINUX_BLKROSET 0x125d
|
||||
#define LINUX_BLKROGET 0x125e
|
||||
#define LINUX_BLKRRPART 0x125f
|
||||
#define LINUX_BLKGETSIZE 0x1260
|
||||
#define LINUX_BLKFLSBUF 0x1261
|
||||
#define LINUX_BLKRASET 0x1262
|
||||
#define LINUX_BLKRAGET 0x1263
|
||||
#define LINUX_BLKFRASET 0x1264
|
||||
#define LINUX_BLKFRAGET 0x1265
|
||||
#define LINUX_BLKSECTSET 0x1266
|
||||
#define LINUX_BLKSECTGET 0x1267
|
||||
#define LINUX_BLKSSZGET 0x1268
|
||||
|
||||
#define LINUX_IOCTL_DISK_MIN LINUX_BLKROSET
|
||||
#define LINUX_IOCTL_DISK_MAX LINUX_BLKSSZGET
|
||||
|
@ -56,19 +56,19 @@
|
||||
#include <i386/linux/linux_proto.h>
|
||||
#include <i386/linux/linux_util.h>
|
||||
|
||||
static linux_ioctl_function_t linux_ioctl_disk;
|
||||
static linux_ioctl_function_t linux_ioctl_cdrom;
|
||||
static linux_ioctl_function_t linux_ioctl_console;
|
||||
static linux_ioctl_function_t linux_ioctl_disk;
|
||||
static linux_ioctl_function_t linux_ioctl_socket;
|
||||
static linux_ioctl_function_t linux_ioctl_sound;
|
||||
static linux_ioctl_function_t linux_ioctl_termio;
|
||||
|
||||
static struct linux_ioctl_handler disk_handler =
|
||||
{ linux_ioctl_disk, LINUX_IOCTL_DISK_MIN, LINUX_IOCTL_DISK_MAX };
|
||||
static struct linux_ioctl_handler cdrom_handler =
|
||||
{ linux_ioctl_cdrom, LINUX_IOCTL_CDROM_MIN, LINUX_IOCTL_CDROM_MAX };
|
||||
static struct linux_ioctl_handler console_handler =
|
||||
{ linux_ioctl_console, LINUX_IOCTL_CONSOLE_MIN, LINUX_IOCTL_CONSOLE_MAX };
|
||||
static struct linux_ioctl_handler disk_handler =
|
||||
{ linux_ioctl_disk, LINUX_IOCTL_DISK_MIN, LINUX_IOCTL_DISK_MAX };
|
||||
static struct linux_ioctl_handler socket_handler =
|
||||
{ linux_ioctl_socket, LINUX_IOCTL_SOCKET_MIN, LINUX_IOCTL_SOCKET_MAX };
|
||||
static struct linux_ioctl_handler sound_handler =
|
||||
@ -76,9 +76,9 @@ static struct linux_ioctl_handler sound_handler =
|
||||
static struct linux_ioctl_handler termio_handler =
|
||||
{ linux_ioctl_termio, LINUX_IOCTL_TERMIO_MIN, LINUX_IOCTL_TERMIO_MAX };
|
||||
|
||||
DATA_SET(linux_ioctl_handler_set, disk_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, cdrom_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, console_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, disk_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, socket_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, sound_handler);
|
||||
DATA_SET(linux_ioctl_handler_set, termio_handler);
|
||||
|
@ -34,18 +34,18 @@
|
||||
/*
|
||||
* disk
|
||||
*/
|
||||
#define LINUX_BLKROSET 0x125d
|
||||
#define LINUX_BLKROGET 0x125e
|
||||
#define LINUX_BLKRRPART 0x125f
|
||||
#define LINUX_BLKGETSIZE 0x1260
|
||||
#define LINUX_BLKFLSBUF 0x1261
|
||||
#define LINUX_BLKRASET 0x1262
|
||||
#define LINUX_BLKRAGET 0x1263
|
||||
#define LINUX_BLKFRASET 0x1264
|
||||
#define LINUX_BLKFRAGET 0x1265
|
||||
#define LINUX_BLKSECTSET 0x1266
|
||||
#define LINUX_BLKSECTGET 0x1267
|
||||
#define LINUX_BLKSSZGET 0x1268
|
||||
#define LINUX_BLKROSET 0x125d
|
||||
#define LINUX_BLKROGET 0x125e
|
||||
#define LINUX_BLKRRPART 0x125f
|
||||
#define LINUX_BLKGETSIZE 0x1260
|
||||
#define LINUX_BLKFLSBUF 0x1261
|
||||
#define LINUX_BLKRASET 0x1262
|
||||
#define LINUX_BLKRAGET 0x1263
|
||||
#define LINUX_BLKFRASET 0x1264
|
||||
#define LINUX_BLKFRAGET 0x1265
|
||||
#define LINUX_BLKSECTSET 0x1266
|
||||
#define LINUX_BLKSECTGET 0x1267
|
||||
#define LINUX_BLKSSZGET 0x1268
|
||||
|
||||
#define LINUX_IOCTL_DISK_MIN LINUX_BLKROSET
|
||||
#define LINUX_IOCTL_DISK_MAX LINUX_BLKSSZGET
|
||||
|
Loading…
x
Reference in New Issue
Block a user