]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit - drivers/staging/dgnc/dgnc_tty.c
staging: dgnc: changes arguments in sizeof
authorLidza Louina <lidza.louina@gmail.com>
Fri, 4 Oct 2013 16:18:30 +0000 (12:18 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 6 Oct 2013 00:52:58 +0000 (17:52 -0700)
commita07bf39a65cb5eb4e38426afc7d5e00d560211da
tree3f0cc0e7031574a2097f32a23372232ea44d68cf
parent8159fd1be0f04c3cf11098942f277dc0f1239159
staging: dgnc: changes arguments in sizeof

The arguments that were passed into sizeof were
generic. This patch changes this by putting
the actual item that we need a size of instead.

For example:
-   kzalloc(sizeof(struct dgnc_board), GFP_KERNEL);
+   kzalloc(sizeof(*brd), GFP_KERNEL);

Signed-off-by: Lidza Louina <lidza.louina@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgnc/dgnc_driver.c
drivers/staging/dgnc/dgnc_mgmt.c
drivers/staging/dgnc/dgnc_tty.c