Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 94011ec2 authored by Michael Grzeschik's avatar Michael Grzeschik Committed by Greg Kroah-Hartman
Browse files

isp1760-hcd: don't confuse parsers on kmem_cache_create



If DEBUG is defined, the kmem_cache_create call a
WARN_ON if the name of the cache uses a space.

Signed-off-by: default avatarMichael Grzeschik <m.grzeschik@pengutronix.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 310e9e33
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2176,7 +2176,7 @@ static const struct hc_driver isp1760_hc_driver = {

int __init init_kmem_once(void)
{
	urb_listitem_cachep = kmem_cache_create("isp1760 urb_listitem",
	urb_listitem_cachep = kmem_cache_create("isp1760_urb_listitem",
			sizeof(struct urb_listitem), 0, SLAB_TEMPORARY |
			SLAB_MEM_SPREAD, NULL);