aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/uwb
diff options
context:
space:
mode:
authorDavid Vrabel <dv02@dv02pc01.europe.root.pri>2008-10-15 14:50:10 +0100
committerDavid Vrabel <dv02@dv02pc01.europe.root.pri>2008-10-15 14:50:10 +0100
commit92c4d9bd1648b3eaca6b8b8f8932eec390ba7327 (patch)
tree86e696c08aca7d30284319f1f6adabeeeace1f18 /drivers/uwb
parentuwb: use time_after() when purging stale beacons (diff)
downloadlinux-dev-92c4d9bd1648b3eaca6b8b8f8932eec390ba7327.tar.xz
linux-dev-92c4d9bd1648b3eaca6b8b8f8932eec390ba7327.zip
uwb: use kcalloc where appropriate
Signed-off-by: David Vrabel <david.vrabel@csr.com>
Diffstat (limited to 'drivers/uwb')
-rw-r--r--drivers/uwb/lc-dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/uwb/lc-dev.c b/drivers/uwb/lc-dev.c
index a6cb8ad731a6..15f856c9689a 100644
--- a/drivers/uwb/lc-dev.c
+++ b/drivers/uwb/lc-dev.c
@@ -443,7 +443,7 @@ void uwbd_dev_onair(struct uwb_rc *rc, struct uwb_beca_e *bce)
uwb_mac_addr_print(macbuf, sizeof(macbuf), bce->mac_addr);
uwb_dev_addr_print(devbuf, sizeof(devbuf), &bce->dev_addr);
- uwb_dev = kcalloc(1, sizeof(*uwb_dev), GFP_KERNEL);
+ uwb_dev = kzalloc(sizeof(struct uwb_dev), GFP_KERNEL);
if (uwb_dev == NULL) {
dev_err(dev, "new device %s: Cannot allocate memory\n",
macbuf);