2012-05-10 17:13:06 +08:00
|
|
|
/*
|
|
|
|
* This file is part of wl18xx
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Texas Instruments
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
|
|
|
|
#include "../wlcore/wlcore.h"
|
|
|
|
#include "../wlcore/debug.h"
|
|
|
|
|
2012-05-10 17:13:08 +08:00
|
|
|
static struct wlcore_ops wl18xx_ops = {
|
|
|
|
};
|
|
|
|
|
2012-05-10 17:13:06 +08:00
|
|
|
int __devinit wl18xx_probe(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct wl1271 *wl;
|
|
|
|
struct ieee80211_hw *hw;
|
|
|
|
|
|
|
|
hw = wlcore_alloc_hw(0);
|
|
|
|
if (IS_ERR(hw)) {
|
|
|
|
wl1271_error("can't allocate hw");
|
|
|
|
return PTR_ERR(hw);
|
|
|
|
}
|
|
|
|
|
|
|
|
wl = hw->priv;
|
2012-05-10 17:13:08 +08:00
|
|
|
wl->ops = &wl18xx_ops;
|
2012-05-10 17:13:06 +08:00
|
|
|
|
|
|
|
return wlcore_probe(wl, pdev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct platform_device_id wl18xx_id_table[] __devinitconst = {
|
|
|
|
{ "wl18xx", 0 },
|
|
|
|
{ } /* Terminating Entry */
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(platform, wl18xx_id_table);
|
|
|
|
|
|
|
|
static struct platform_driver wl18xx_driver = {
|
|
|
|
.probe = wl18xx_probe,
|
|
|
|
.remove = __devexit_p(wlcore_remove),
|
|
|
|
.id_table = wl18xx_id_table,
|
|
|
|
.driver = {
|
|
|
|
.name = "wl18xx_driver",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init wl18xx_init(void)
|
|
|
|
{
|
|
|
|
return platform_driver_register(&wl18xx_driver);
|
|
|
|
}
|
|
|
|
module_init(wl18xx_init);
|
|
|
|
|
|
|
|
static void __exit wl18xx_exit(void)
|
|
|
|
{
|
|
|
|
platform_driver_unregister(&wl18xx_driver);
|
|
|
|
}
|
|
|
|
module_exit(wl18xx_exit);
|
|
|
|
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
|
|
MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
|