diff options
Diffstat (limited to 'drivers/usb/host/ehci-mem.c')
-rw-r--r-- | drivers/usb/host/ehci-mem.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/usb/host/ehci-mem.c b/drivers/usb/host/ehci-mem.c index ec7eb3f4f867..766061e0260a 100644 --- a/drivers/usb/host/ehci-mem.c +++ b/drivers/usb/host/ehci-mem.c | |||
@@ -220,13 +220,9 @@ static int ehci_mem_init (struct ehci_hcd *ehci, gfp_t flags) | |||
220 | ehci->periodic [i] = EHCI_LIST_END; | 220 | ehci->periodic [i] = EHCI_LIST_END; |
221 | 221 | ||
222 | /* software shadow of hardware table */ | 222 | /* software shadow of hardware table */ |
223 | ehci->pshadow = kmalloc (ehci->periodic_size * sizeof (void *), flags); | 223 | ehci->pshadow = kcalloc(ehci->periodic_size, sizeof(void *), flags); |
224 | if (ehci->pshadow == NULL) { | 224 | if (ehci->pshadow != NULL) |
225 | goto fail; | 225 | return 0; |
226 | } | ||
227 | memset (ehci->pshadow, 0, ehci->periodic_size * sizeof (void *)); | ||
228 | |||
229 | return 0; | ||
230 | 226 | ||
231 | fail: | 227 | fail: |
232 | ehci_dbg (ehci, "couldn't init memory\n"); | 228 | ehci_dbg (ehci, "couldn't init memory\n"); |