Skip to content

Commit

Permalink
drivers: usb: atm: ueagle-atm: Add missing const qualifier
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Chris Forbes authored and Greg Kroah-Hartman committed Jul 8, 2011
1 parent 5860730 commit 6f95b4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/usb/atm/ueagle-atm.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,8 @@ struct intr_pkt {

static struct usb_driver uea_driver;
static DEFINE_MUTEX(uea_mutex);
static const char *chip_name[] = {"ADI930", "Eagle I", "Eagle II", "Eagle III",
"Eagle IV"};
static const char * const chip_name[] = {
"ADI930", "Eagle I", "Eagle II", "Eagle III", "Eagle IV"};

static int modem_index;
static unsigned int debug;
Expand Down

0 comments on commit 6f95b4b

Please sign in to comment.