Checkpatch cleanup: Opening brackets
Checkpatch nowadays is allergic against '{' in continuation lines. Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
19
it87.c
19
it87.c
@@ -277,15 +277,16 @@ static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83, 0x4d };
|
||||
static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87, 0x4f };
|
||||
|
||||
static const u8 IT87_REG_FAN_8665[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82, 0x93 };
|
||||
static const u8 IT87_REG_FAN_MIN_8665[] =
|
||||
{ 0x10, 0x11, 0x12, 0x84, 0x86, 0xb2 };
|
||||
static const u8 IT87_REG_FAN_MIN_8665[] = {
|
||||
0x10, 0x11, 0x12, 0x84, 0x86, 0xb2 };
|
||||
static const u8 IT87_REG_FANX_8665[] = { 0x18, 0x19, 0x1a, 0x81, 0x83, 0x94 };
|
||||
static const u8 IT87_REG_FANX_MIN_8665[] =
|
||||
{ 0x1b, 0x1c, 0x1d, 0x85, 0x87, 0xb3 };
|
||||
static const u8 IT87_REG_FANX_MIN_8665[] = {
|
||||
0x1b, 0x1c, 0x1d, 0x85, 0x87, 0xb3 };
|
||||
|
||||
static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59, 0x5a, 0x90, 0x91 };
|
||||
|
||||
static const u8 IT87_REG_TEMP_OFFSET_8686[] = { 0x56, 0x57, 0x59, 0x90, 0x91, 0x92 };
|
||||
static const u8 IT87_REG_TEMP_OFFSET_8686[] = {
|
||||
0x56, 0x57, 0x59, 0x90, 0x91, 0x92 };
|
||||
|
||||
#define IT87_REG_FAN_MAIN_CTRL 0x13
|
||||
#define IT87_REG_FAN_CTL 0x14
|
||||
@@ -306,10 +307,10 @@ static const u8 IT87_REG_VIN[] = { 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,
|
||||
static const u8 IT87_REG_TEMP_HIGH[] = { 0x40, 0x42, 0x44, 0x46, 0xb4, 0xb6 };
|
||||
static const u8 IT87_REG_TEMP_LOW[] = { 0x41, 0x43, 0x45, 0x47, 0xb5, 0xb7 };
|
||||
|
||||
static const u8 IT87_REG_TEMP_HIGH_8686[] =
|
||||
{ 0x40, 0x42, 0x44, 0xb4, 0xb6, 0xb8 };
|
||||
static const u8 IT87_REG_TEMP_LOW_8686[] =
|
||||
{ 0x41, 0x43, 0x45, 0xb5, 0xb7, 0xb9 };
|
||||
static const u8 IT87_REG_TEMP_HIGH_8686[] = {
|
||||
0x40, 0x42, 0x44, 0xb4, 0xb6, 0xb8 };
|
||||
static const u8 IT87_REG_TEMP_LOW_8686[] = {
|
||||
0x41, 0x43, 0x45, 0xb5, 0xb7, 0xb9 };
|
||||
|
||||
#define IT87_REG_VIN_ENABLE 0x50
|
||||
#define IT87_REG_TEMP_ENABLE 0x51
|
||||
|
Reference in New Issue
Block a user