staging: unisys: visorinput: visorinput.c: Fix #define formatting
In an effort to create a more uniform coding style within the Unisys s-Par driver set, this patch adjusts the formatting of all #define directives within this source file to match the following template, and thereby eliminate irregular usage of whitespace: Reviewed-by: Tim Sell <timothy.sell@unisys.com> The amount of whitespace used between the <token> and the <value> is dependent on what is needed to make the surrounding #define directives as uniform as possible. Signed-off-by: David Binder <david.binder@unisys.com> Signed-off-by: David Kershner <david.kershner@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
07b7eef2c5
commit
b9b2c242fa
|
@ -33,21 +33,21 @@
|
|||
#include "ultrainputreport.h"
|
||||
|
||||
/* Keyboard channel {c73416d0-b0b8-44af-b304-9d2ae99f1b3d} */
|
||||
#define SPAR_KEYBOARD_CHANNEL_PROTOCOL_UUID \
|
||||
UUID_LE(0xc73416d0, 0xb0b8, 0x44af, \
|
||||
#define SPAR_KEYBOARD_CHANNEL_PROTOCOL_UUID \
|
||||
UUID_LE(0xc73416d0, 0xb0b8, 0x44af, \
|
||||
0xb3, 0x4, 0x9d, 0x2a, 0xe9, 0x9f, 0x1b, 0x3d)
|
||||
#define SPAR_KEYBOARD_CHANNEL_PROTOCOL_UUID_STR "c73416d0-b0b8-44af-b304-9d2ae99f1b3d"
|
||||
|
||||
/* Mouse channel {addf07d4-94a9-46e2-81c3-61abcdbdbd87} */
|
||||
#define SPAR_MOUSE_CHANNEL_PROTOCOL_UUID \
|
||||
#define SPAR_MOUSE_CHANNEL_PROTOCOL_UUID \
|
||||
UUID_LE(0xaddf07d4, 0x94a9, 0x46e2, \
|
||||
0x81, 0xc3, 0x61, 0xab, 0xcd, 0xbd, 0xbd, 0x87)
|
||||
#define SPAR_MOUSE_CHANNEL_PROTOCOL_UUID_STR \
|
||||
"addf07d4-94a9-46e2-81c3-61abcdbdbd87"
|
||||
|
||||
#define PIXELS_ACROSS_DEFAULT 800
|
||||
#define PIXELS_DOWN_DEFAULT 600
|
||||
#define KEYCODE_TABLE_BYTES 256
|
||||
#define PIXELS_ACROSS_DEFAULT 800
|
||||
#define PIXELS_DOWN_DEFAULT 600
|
||||
#define KEYCODE_TABLE_BYTES 256
|
||||
|
||||
enum visorinput_device_type {
|
||||
visorinput_keyboard,
|
||||
|
|
Loading…
Reference in New Issue