USB: omninet: use kzalloc for private data

Make sure the port private data, which contains the write sequence
number, is cleared at allocation.

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Johan Hovold 2013-04-16 18:01:19 +02:00 committed by Greg Kroah-Hartman
parent 2bef64b89a
commit 81f58c67b1
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ static int omninet_port_probe(struct usb_serial_port *port)
{
struct omninet_data *od;
od = kmalloc(sizeof(struct omninet_data), GFP_KERNEL);
od = kzalloc(sizeof(*od), GFP_KERNEL);
if (!od)
return -ENOMEM;