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

Commit b6657bfb authored by Elena Oat's avatar Elena Oat Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8188eu: Replace rtw_zmalloc with kzalloc.



This patch replaces rtw_zmalloc with kzalloc in function
rtw_setstandby_cmd. There are no locks, hence GFP_KERNEL flag is used.

Signed-off-by: default avatarElena Oat <oat.elena@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4d7af376
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -393,13 +393,13 @@ u8 rtw_setstandby_cmd(struct adapter *padapter, uint action)
	u8 ret = _SUCCESS;


	ph2c = (struct cmd_obj *)rtw_zmalloc(sizeof(struct cmd_obj));
	ph2c = kzalloc(sizeof(struct cmd_obj), GFP_KERNEL);
	if (ph2c == NULL) {
		ret = _FAIL;
		goto exit;
	}

	psetusbsuspend = (struct usb_suspend_parm *)rtw_zmalloc(sizeof(struct usb_suspend_parm));
	psetusbsuspend = kzalloc(sizeof(struct usb_suspend_parm), GFP_KERNEL);
	if (psetusbsuspend == NULL) {
		kfree(ph2c);
		ret = _FAIL;