drivers: usb: atm: ueagle-atm: Add missing const qualifier
Added missing const qualifier as flagged by checkpatch.pl Signed-off-by: Chris Forbes <chrisf@ijw.co.nz> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
586073071d
commit
6f95b4b752
1 changed files with 2 additions and 2 deletions
|
@ -535,8 +535,8 @@ struct intr_pkt {
|
||||||
|
|
||||||
static struct usb_driver uea_driver;
|
static struct usb_driver uea_driver;
|
||||||
static DEFINE_MUTEX(uea_mutex);
|
static DEFINE_MUTEX(uea_mutex);
|
||||||
static const char *chip_name[] = {"ADI930", "Eagle I", "Eagle II", "Eagle III",
|
static const char * const chip_name[] = {
|
||||||
"Eagle IV"};
|
"ADI930", "Eagle I", "Eagle II", "Eagle III", "Eagle IV"};
|
||||||
|
|
||||||
static int modem_index;
|
static int modem_index;
|
||||||
static unsigned int debug;
|
static unsigned int debug;
|
||||||
|
|
Loading…
Add table
Reference in a new issue