Revert "[media] radio: Add Sanyo LM7000 tuner driver"

This reverts commit 4ecbb69414.

As requested by Hans Verkuil:
> You accidentally merged the wrong first version of the lm7000 patch series.
>
> These are the correct second version patches:
>
> http://patchwork.linuxtv.org/patch/11689/
> http://patchwork.linuxtv.org/patch/11690/
> http://patchwork.linuxtv.org/patch/11691/
>
> The second version is much simpler and doesn't require the creation of a whole
> new driver.

Requested-by: Hans Verkuil <hverkuil@xs4all.nl>
Cc: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Этот коммит содержится в:
Mauro Carvalho Chehab
2012-06-25 11:06:59 -03:00
родитель 8f7fa3c801
Коммит f6d1b15c15
4 изменённых файлов: 0 добавлений и 88 удалений

Просмотреть файл

@@ -1,32 +0,0 @@
#ifndef __LM7000_H
#define __LM7000_H
#define LM7000_DATA (1 << 0)
#define LM7000_CLK (1 << 1)
#define LM7000_CE (1 << 2)
#define LM7000_FREQ_MASK 0x3fff
#define LM7000_BIT_T0 (1 << 14)
#define LM7000_BIT_T1 (1 << 15)
#define LM7000_BIT_B0 (1 << 16)
#define LM7000_BIT_B1 (1 << 17)
#define LM7000_BIT_B2 (1 << 18)
#define LM7000_BIT_TB (1 << 19)
#define LM7000_FM_100 (0 << 20)
#define LM7000_FM_50 (1 << 20)
#define LM7000_FM_25 (2 << 20)
#define LM7000_AM_5 (3 << 20)
#define LM7000_AM_10 (4 << 20)
#define LM7000_AM_9 (5 << 20)
#define LM7000_AM_1 (6 << 20)
#define LM7000_AM_5_ (7 << 20)
#define LM7000_BIT_FM (1 << 23)
struct lm7000 {
void (*set_pins)(struct lm7000 *lm, u8 pins);
};
void lm7000_set_freq(struct lm7000 *lm, u32 freq);
#endif /* __LM7000_H */