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