1
0
Fork 0

staging: rtl8723au: Get rid of NDEV_FMT/NDEV_ARG macros

Silly use-once macros that simply obfuscates the code.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
wifi-calibration
Jes Sorensen 2014-05-09 15:04:02 +02:00 committed by Greg Kroah-Hartman
parent 5e3a829996
commit dc24abd409
2 changed files with 2 additions and 5 deletions

View File

@ -137,8 +137,6 @@ extern unsigned char MCS_rate_1R23A[16];
void _rtw_init_queue23a(struct rtw_queue *pqueue);
#define NDEV_FMT "%s"
#define NDEV_ARG(ndev) ndev->name
#define ADPT_FMT "%s"
#define ADPT_ARG(adapter) adapter->pnetdev->name
#define FUNC_NDEV_FMT "%s(%s)"

View File

@ -2558,9 +2558,8 @@ static int rtw_cfg80211_add_monitor_if(struct rtw_adapter *padapter, char *name,
}
if (pwdev_priv->pmon_ndev) {
DBG_8723A(FUNC_ADPT_FMT " monitor interface exist: " NDEV_FMT
"\n", FUNC_ADPT_ARG(padapter),
NDEV_ARG(pwdev_priv->pmon_ndev));
DBG_8723A(FUNC_ADPT_FMT " monitor interface exist: %s\n",
FUNC_ADPT_ARG(padapter), pwdev_priv->pmon_ndev->name);
ret = -EBUSY;
goto out;
}