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

Commit 7d4de89f authored by matt mooney's avatar matt mooney Committed by Greg Kroah-Hartman
Browse files

staging: usbip: stub_main.c: use KMEM_CACHE macro



Change kmem_cache_create() to the KMEM_CACHE() macro.

Signed-off-by: default avatarmatt mooney <mfm@muteddisk.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 27ed5da0
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -249,9 +249,8 @@ static int __init usbip_host_init(void)
{
	int ret;

	stub_priv_cache = kmem_cache_create("stub_priv",
					    sizeof(struct stub_priv), 0,
					    SLAB_HWCACHE_ALIGN, NULL);
	stub_priv_cache = KMEM_CACHE(stub_priv, SLAB_HWCACHE_ALIGN);

	if (!stub_priv_cache) {
		pr_err("kmem_cache_create failed\n");
		return -ENOMEM;