diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2014-05-16 10:04:55 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-05-16 11:34:33 -0700 |
commit | 633dd914ca2b94e91e453d033724d805d286394a (patch) | |
tree | 96a3f4d685b73ae229c74c55a0f2050100e026e1 | |
parent | e6ac6eb2aef4a78f21e433d5ce657334d0f77ec5 (diff) | |
download | linux-633dd914ca2b94e91e453d033724d805d286394a.tar.gz linux-633dd914ca2b94e91e453d033724d805d286394a.tar.bz2 linux-633dd914ca2b94e91e453d033724d805d286394a.zip |
staging: rtl8723au: Move last utility function from osdep_service.c to os_intfs.c
No point carrying a dedicated file just for this small helper, so move
it to os_intfs.c and get rid of osdep_service.c
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8723au/Makefile | 1 | ||||
-rw-r--r-- | drivers/staging/rtl8723au/os_dep/os_intfs.c | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723au/Makefile b/drivers/staging/rtl8723au/Makefile index bbf503dd437a..5146b709efb4 100644 --- a/drivers/staging/rtl8723au/Makefile +++ b/drivers/staging/rtl8723au/Makefile @@ -45,7 +45,6 @@ r8723au-y := \ hal/usb_ops_linux.o \ os_dep/ioctl_cfg80211.o \ os_dep/mlme_linux.o \ - os_dep/osdep_service.o \ os_dep/os_intfs.o \ os_dep/recv_linux.o \ os_dep/usb_intf.o \ diff --git a/drivers/staging/rtl8723au/os_dep/os_intfs.c b/drivers/staging/rtl8723au/os_dep/os_intfs.c index f8cc876fb8e6..590028322c44 100644 --- a/drivers/staging/rtl8723au/os_dep/os_intfs.c +++ b/drivers/staging/rtl8723au/os_dep/os_intfs.c @@ -884,3 +884,9 @@ void rtw_ndev_destructor(struct net_device *ndev) kfree(ndev->ieee80211_ptr); free_netdev(ndev); } + +void _rtw_init_queue23a(struct rtw_queue *pqueue) +{ + INIT_LIST_HEAD(&pqueue->queue); + spin_lock_init(&pqueue->lock); +} |