2009-04-29 20:33:31 +00:00
|
|
|
/*
|
|
|
|
* This file is part of wl12xx
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Nokia Corporation
|
|
|
|
*
|
2010-08-22 19:46:28 +00:00
|
|
|
* Contact: Luciano Coelho <luciano.coelho@nokia.com>
|
2009-04-29 20:33:31 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-09-16 11:16:02 +00:00
|
|
|
#ifndef _LINUX_WL12XX_H
|
|
|
|
#define _LINUX_WL12XX_H
|
2009-04-29 20:33:31 +00:00
|
|
|
|
2013-01-25 10:05:34 +00:00
|
|
|
#include <linux/err.h>
|
|
|
|
|
2014-02-14 23:05:52 +00:00
|
|
|
struct wl1251_platform_data {
|
2014-02-14 23:05:53 +00:00
|
|
|
int power_gpio;
|
2010-04-16 10:22:12 +00:00
|
|
|
/* SDIO only: IRQ number if WLAN_IRQ line is used, 0 for SDIO IRQs */
|
|
|
|
int irq;
|
2009-11-17 16:50:09 +00:00
|
|
|
bool use_eeprom;
|
2014-02-14 23:05:52 +00:00
|
|
|
};
|
|
|
|
|
2013-01-25 10:05:34 +00:00
|
|
|
#ifdef CONFIG_WILINK_PLATFORM_DATA
|
2010-09-28 18:20:28 +00:00
|
|
|
|
2014-02-14 23:05:52 +00:00
|
|
|
int wl1251_set_platform_data(const struct wl1251_platform_data *data);
|
|
|
|
|
|
|
|
struct wl1251_platform_data *wl1251_get_platform_data(void);
|
|
|
|
|
2010-09-28 18:20:28 +00:00
|
|
|
#else
|
|
|
|
|
2014-02-14 23:05:52 +00:00
|
|
|
static inline
|
|
|
|
int wl1251_set_platform_data(const struct wl1251_platform_data *data)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
struct wl1251_platform_data *wl1251_get_platform_data(void)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENODATA);
|
|
|
|
}
|
|
|
|
|
2013-01-25 10:05:34 +00:00
|
|
|
#endif
|
2010-09-15 23:31:12 +00:00
|
|
|
|
2009-04-29 20:33:31 +00:00
|
|
|
#endif
|