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