keucr: fixes space prohibited before warning
This patch fixes the following checkpatch error and warning, ERROR: space prohibited before open square bracket '[' WARNING: space prohibited before semicolon Signed-off-by: Amarjargal Gundjalam <amarjargal16@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
96dfb4bd35
Коммит
a353959104
|
@ -61,7 +61,7 @@ DWORD MediaChange;
|
|||
static DWORD SectCopyMode;
|
||||
|
||||
//BIT Control Macro
|
||||
static BYTE BitData[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 } ;
|
||||
static BYTE BitData[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 };
|
||||
#define Set_D_Bit(a, b) (a[(BYTE)((b) / 8)] |= BitData[(b) % 8])
|
||||
#define Clr_D_Bit(a, b) (a[(BYTE)((b) / 8)] &= ~BitData[(b) % 8])
|
||||
#define Chk_D_Bit(a, b) (a[(BYTE)((b) / 8)] & BitData[(b) % 8])
|
||||
|
|
|
@ -24,7 +24,7 @@ MODULE_LICENSE("GPL");
|
|||
|
||||
static unsigned int delay_use = 1;
|
||||
|
||||
static struct usb_device_id eucr_usb_ids [] = {
|
||||
static struct usb_device_id eucr_usb_ids[] = {
|
||||
{ USB_DEVICE(0x058f, 0x6366) },
|
||||
{ USB_DEVICE(0x0cf2, 0x6230) },
|
||||
{ USB_DEVICE(0x0cf2, 0x6250) },
|
||||
|
|
Загрузка…
Ссылка в новой задаче