/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LM7000_H #define __LM7000_H /* Sanyo LM7000 tuner chip control * * Copyright 2012 Ondrej Zary <[email protected]> * based on radio-aimslab.c by M. Kirkwood * and radio-sf16fmi.c by M. Kirkwood and Petr Vandrovec */ #define LM7000_DATA … #define LM7000_CLK … #define LM7000_CE … #define LM7000_FM_100 … #define LM7000_FM_50 … #define LM7000_FM_25 … #define LM7000_BIT_FM … static inline void lm7000_set_freq(u32 freq, void *handle, void (*set_pins)(void *handle, u8 pins)) { … } #endif /* __LM7000_H */