Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: panel: Fix quoted string split across line in panel.c

This patch fixes the following checkpatch.pl warning in panel.c:
WARNING: quoted string split across lines

Signed-off-by: Monam Agarwal <monamagarwal123@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Monam Agarwal and committed by
Greg Kroah-Hartman
fe5d2e01 68d386bf

+9 -18
+9 -18
drivers/staging/panel/panel.c
··· 457 457 static int lcd_type = -1; 458 458 module_param(lcd_type, int, 0000); 459 459 MODULE_PARM_DESC(lcd_type, 460 - "LCD type: 0=none, 1=old //, 2=serial ks0074, " 461 - "3=hantronix //, 4=nexcom //, 5=compiled-in"); 460 + "LCD type: 0=none, 1=old //, 2=serial ks0074, 3=hantronix //, 4=nexcom //, 5=compiled-in"); 462 461 463 462 static int lcd_proto = -1; 464 463 module_param(lcd_proto, int, 0000); 465 464 MODULE_PARM_DESC(lcd_proto, 466 - "LCD communication: 0=parallel (//), 1=serial," 467 - "2=TI LCD Interface"); 465 + "LCD communication: 0=parallel (//), 1=serial, 2=TI LCD Interface"); 468 466 469 467 static int lcd_charset = -1; 470 468 module_param(lcd_charset, int, 0000); ··· 471 473 static int keypad_type = -1; 472 474 module_param(keypad_type, int, 0000); 473 475 MODULE_PARM_DESC(keypad_type, 474 - "Keypad type: 0=none, 1=old 6 keys, 2=new 6+1 keys, " 475 - "3=nexcom 4 keys"); 476 + "Keypad type: 0=none, 1=old 6 keys, 2=new 6+1 keys, 3=nexcom 4 keys"); 476 477 477 478 static int profile = DEFAULT_PROFILE; 478 479 module_param(profile, int, 0000); ··· 491 494 static int lcd_e_pin = PIN_NOT_SET; 492 495 module_param(lcd_e_pin, int, 0000); 493 496 MODULE_PARM_DESC(lcd_e_pin, 494 - "# of the // port pin connected to LCD 'E' signal, " 495 - "with polarity (-17..17)"); 497 + "# of the // port pin connected to LCD 'E' signal, with polarity (-17..17)"); 496 498 497 499 static int lcd_rs_pin = PIN_NOT_SET; 498 500 module_param(lcd_rs_pin, int, 0000); 499 501 MODULE_PARM_DESC(lcd_rs_pin, 500 - "# of the // port pin connected to LCD 'RS' signal, " 501 - "with polarity (-17..17)"); 502 + "# of the // port pin connected to LCD 'RS' signal, with polarity (-17..17)"); 502 503 503 504 static int lcd_rw_pin = PIN_NOT_SET; 504 505 module_param(lcd_rw_pin, int, 0000); 505 506 MODULE_PARM_DESC(lcd_rw_pin, 506 - "# of the // port pin connected to LCD 'RW' signal, " 507 - "with polarity (-17..17)"); 507 + "# of the // port pin connected to LCD 'RW' signal, with polarity (-17..17)"); 508 508 509 509 static int lcd_bl_pin = PIN_NOT_SET; 510 510 module_param(lcd_bl_pin, int, 0000); 511 511 MODULE_PARM_DESC(lcd_bl_pin, 512 - "# of the // port pin connected to LCD backlight, " 513 - "with polarity (-17..17)"); 512 + "# of the // port pin connected to LCD backlight, with polarity (-17..17)"); 514 513 515 514 static int lcd_da_pin = PIN_NOT_SET; 516 515 module_param(lcd_da_pin, int, 0000); 517 516 MODULE_PARM_DESC(lcd_da_pin, 518 - "# of the // port pin connected to serial LCD 'SDA' " 519 - "signal, with polarity (-17..17)"); 517 + "# of the // port pin connected to serial LCD 'SDA' signal, with polarity (-17..17)"); 520 518 521 519 static int lcd_cl_pin = PIN_NOT_SET; 522 520 module_param(lcd_cl_pin, int, 0000); 523 521 MODULE_PARM_DESC(lcd_cl_pin, 524 - "# of the // port pin connected to serial LCD 'SCL' " 525 - "signal, with polarity (-17..17)"); 522 + "# of the // port pin connected to serial LCD 'SCL' signal, with polarity (-17..17)"); 526 523 527 524 static const unsigned char *lcd_char_conv; 528 525