mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
[PATCH] USB: Cleanups for usb gadget mass-storage
Remove useless initalizers. Signed-off-by: Pavel Machek <pavel@suse.cz> Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
This commit is contained in:
parent
12c3da346e
commit
3aea4a76a3
@ -336,8 +336,8 @@ MODULE_LICENSE("Dual BSD/GPL");
|
||||
#define MAX_LUNS 8
|
||||
|
||||
/* Arggh! There should be a module_param_array_named macro! */
|
||||
static char *file[MAX_LUNS] = {NULL, };
|
||||
static int ro[MAX_LUNS] = {0, };
|
||||
static char *file[MAX_LUNS];
|
||||
static int ro[MAX_LUNS];
|
||||
|
||||
static struct {
|
||||
int num_filenames;
|
||||
|
Loading…
Reference in New Issue
Block a user