Commit 1973d029 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Greg Kroah-Hartman

USB: wusbcore: Switch to bitmap_zalloc()

Switch to bitmap_zalloc() to show clearly what we are allocating.
Besides that it returns pointer of bitmap type instead of opaque void *.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9d20bca5
...@@ -470,9 +470,7 @@ int rpipe_get_by_ep(struct wahc *wa, struct usb_host_endpoint *ep, ...@@ -470,9 +470,7 @@ int rpipe_get_by_ep(struct wahc *wa, struct usb_host_endpoint *ep,
int wa_rpipes_create(struct wahc *wa) int wa_rpipes_create(struct wahc *wa)
{ {
wa->rpipes = le16_to_cpu(wa->wa_descr->wNumRPipes); wa->rpipes = le16_to_cpu(wa->wa_descr->wNumRPipes);
wa->rpipe_bm = kcalloc(BITS_TO_LONGS(wa->rpipes), wa->rpipe_bm = bitmap_zalloc(wa->rpipes, GFP_KERNEL);
sizeof(unsigned long),
GFP_KERNEL);
if (wa->rpipe_bm == NULL) if (wa->rpipe_bm == NULL)
return -ENOMEM; return -ENOMEM;
return 0; return 0;
...@@ -487,7 +485,7 @@ void wa_rpipes_destroy(struct wahc *wa) ...@@ -487,7 +485,7 @@ void wa_rpipes_destroy(struct wahc *wa)
dev_err(dev, "BUG: pipes not released on exit: %*pb\n", dev_err(dev, "BUG: pipes not released on exit: %*pb\n",
wa->rpipes, wa->rpipe_bm); wa->rpipes, wa->rpipe_bm);
} }
kfree(wa->rpipe_bm); bitmap_free(wa->rpipe_bm);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment