staging: r8188eu: convert only rtw_vmalloc call to vmalloc
authorPhillip Potter <phil@philpotter.co.uk>
Wed, 18 Aug 2021 23:48:47 +0000 (00:48 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Aug 2021 05:42:56 +0000 (07:42 +0200)
Convert the only call to rtw_vmalloc in os_dep/ioctl_linux.c to the
kernel's existing vmalloc function, as rtw_malloc is just a preprocessor
definition for _rtw_vmalloc. The _rtw_vmalloc function is defined inline
and returns a u8, wrapping standard vmalloc. This behaviour is not necessary.

Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
Link: https://lore.kernel.org/r/20210818234853.208448-2-phil@philpotter.co.uk
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/r8188eu/os_dep/ioctl_linux.c

index c0e66c1..ab4a920 100644 (file)
@@ -4481,7 +4481,7 @@ static int rtw_wx_set_priv(struct net_device *dev,
                return -EFAULT;
 
        len = dwrq->length;
-       ext = rtw_vmalloc(len);
+       ext = vmalloc(len);
        if (!ext)
                return -ENOMEM;