mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 18:11:56 +00:00
0b0cb52bd8
The driver should not require a machine specific header. Change it to pass the GPIO line through a lookup table, and move the timing generator definitions into the drivers itself. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Robert Jarzmik <robert.jarzmik@free.fr> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
9 lines
173 B
C
9 lines
173 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef _TOSA_BL_H
|
|
#define _TOSA_BL_H
|
|
|
|
struct spi_device;
|
|
extern int tosa_bl_enable(struct spi_device *spi, int enable);
|
|
|
|
#endif
|