Initial cut of the open ath9k htc firmware.
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / target / adf / adf_net.c
1 /**
2  * Copyright (c) 2002-2008 Atheros Communications, Inc.
3  * All rights reserved
4  * 
5  * @module_name     ADF_NET
6  * @module_desc     Magpie Network Shim
7  */
8
9 #include <adf_net.h>
10 //#include <asf_queue.h>
11 //#include "adf_net_wcmd_pvt.h"
12 #include <wlan_pci.h>
13
14 /**
15  * Prototypes
16  */
17
18 /**
19  * @brief register the driver into the shim
20  * @param[in] drv
21  * 
22  * @return a_status_t
23  */
24 a_status_t
25 __adf_net_register_drv(adf_drv_info_t *drv)
26 {
27     wlan_pci_register_drv(drv);    
28     return A_STATUS_OK;
29 }
30
31 /**
32  * @brief unregister the driver from the shim
33  * @param[in] name
34  */
35 void
36 __adf_net_unregister_drv(a_uint8_t *name)
37 {
38     // do nothing...
39 }