USB: change the way we initialize format strings
authorDmitry Torokhov <dtor@vmware.com>
Sun, 20 Mar 2011 09:02:39 +0000 (02:02 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 13 Apr 2011 23:18:25 +0000 (16:18 -0700)
Changing initialization from

static const char *string = "blah";

to

static const char string[] = "blah";

saves us one pointer per each string.

Signed-off-by: Dmitry Torokhov <dtor@vmware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

No differences found