blob: 156326d9b5cd8cca7dc32dc3eeb1c9c9514d950f [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Colin McCabed2b21f12009-01-09 14:58:09 -08002/*
3 * board-specific data for the libertas_spi driver.
4 *
5 * Copyright 2008 Analog Devices Inc.
Colin McCabed2b21f12009-01-09 14:58:09 -08006 */
7#ifndef _LIBERTAS_SPI_H_
8#define _LIBERTAS_SPI_H_
Mike Rapoport0c2bec92009-02-03 09:04:20 +02009
10struct spi_device;
11
Colin McCabed2b21f12009-01-09 14:58:09 -080012struct libertas_spi_platform_data {
13 /* There are two ways to read data from the WLAN module's SPI
14 * interface. Setting 0 or 1 here controls which one is used.
15 *
16 * Usually you want to set use_dummy_writes = 1.
17 * However, if that doesn't work or if you are using a slow SPI clock
18 * speed, you may want to use 0 here. */
19 u16 use_dummy_writes;
20
Mike Rapoport0c2bec92009-02-03 09:04:20 +020021 /* Board specific setup/teardown */
22 int (*setup)(struct spi_device *spi);
23 int (*teardown)(struct spi_device *spi);
Colin McCabed2b21f12009-01-09 14:58:09 -080024};
25#endif