Commit fea0683e authored by Mark Hounschell's avatar Mark Hounschell Committed by Greg Kroah-Hartman

staging: dgap: Get rid of CamelCase

This patch gets rid of the obvious CamelCases
from both dgap.c and dgap.h
Signed-off-by: default avatarMark Hounschell <markh@compro.net>
Tested-by: default avatarMark Hounschell <markh@compro.net>
Suggested-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6a825241
This diff is collapsed.
......@@ -580,18 +580,18 @@ struct board_t {
struct channel_t *channels[MAXPORTS]; /* array of pointers to our */
/* channels. */
struct tty_driver *SerialDriver;
struct tty_port *SerialPorts;
char SerialName[200];
struct tty_driver *PrintDriver;
struct tty_port *PrinterPorts;
char PrintName[200];
u32 dgap_Major_Serial_Registered;
u32 dgap_Major_TransparentPrint_Registered;
u32 dgap_Serial_Major;
u32 dgap_TransparentPrint_Major;
struct tty_driver *serial_driver;
struct tty_port *serial_ports;
char serial_name[200];
struct tty_driver *print_driver;
struct tty_port *printer_ports;
char print_name[200];
u32 dgap_major_serial_registered;
u32 dgap_major_transparent_print_registered;
u32 dgap_serial_major;
u32 dgap_transparent_print_major;
struct bs_t __iomem *bd_bs; /* Base structure pointer */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment