From: Ivan Safonov Date: Sat, 3 Sep 2016 15:33:49 +0000 (+0700) Subject: staging: r8188eu: remove hal_set_hal_ops macro X-Git-Tag: v4.9-rc1~119^2~681 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6559b8b5cb0c232da487e2e221bc999c27c19b14;p=karo-tx-linux.git staging: r8188eu: remove hal_set_hal_ops macro hal_set_hal_ops is a trivial wrapper for rtl8188eu_set_hal_ops. Signed-off-by: Ivan Safonov Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8188eu/include/usb_hal.h b/drivers/staging/rtl8188eu/include/usb_hal.h index b1bf07a9013e..fd9921f22848 100644 --- a/drivers/staging/rtl8188eu/include/usb_hal.h +++ b/drivers/staging/rtl8188eu/include/usb_hal.h @@ -16,6 +16,5 @@ #define __USB_HAL_H__ void rtl8188eu_set_hal_ops(struct adapter *padapter); -#define hal_set_hal_ops rtl8188eu_set_hal_ops #endif /* __USB_HAL_H__ */ diff --git a/drivers/staging/rtl8188eu/os_dep/usb_intf.c b/drivers/staging/rtl8188eu/os_dep/usb_intf.c index 900dd5325488..ea770825c1ca 100644 --- a/drivers/staging/rtl8188eu/os_dep/usb_intf.c +++ b/drivers/staging/rtl8188eu/os_dep/usb_intf.c @@ -362,7 +362,7 @@ static struct adapter *rtw_usb_if1_init(struct dvobj_priv *dvobj, } /* step 2. hook HalFunc, allocate HalData */ - hal_set_hal_ops(padapter); + rtl8188eu_set_hal_ops(padapter); padapter->intf_start = &usb_intf_start; padapter->intf_stop = &usb_intf_stop;