[PATCH 09/36] usb: serial: ti_usb_3410_5052: Use kzalloc instead of kmalloc

From: Mathieu OTHACEHE
Date: Thu May 12 2016 - 04:58:46 EST


Use kzalloc instead of kmalloc to avoid field initialisation to 0.

Signed-off-by: Mathieu OTHACEHE <m.othacehe@xxxxxxxxx>
---
drivers/usb/serial/ti_usb_3410_5052.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c
index 88aacf5..c9e2345 100644
--- a/drivers/usb/serial/ti_usb_3410_5052.c
+++ b/drivers/usb/serial/ti_usb_3410_5052.c
@@ -950,12 +950,10 @@ static void ti_set_termios(struct tty_struct *tty,
if (tport == NULL)
return;

- config = kmalloc(sizeof(*config), GFP_KERNEL);
+ config = kzalloc(sizeof(*config), GFP_KERNEL);
if (!config)
return;

- config->wFlags = 0;
-
/* these flags must be set */
config->wFlags |= TI_UART_ENABLE_MS_INTS;
config->wFlags |= TI_UART_ENABLE_AUTO_START_DMA;
--
2.8.2