123456789101112131415161718192021222324252627282930313233 |
- /*
- * PHILIPS FQ1216ME-MK3 Demodulation Device Driver
- *
- * Author: Bobby Yang <bo.yang@amlogic.com>
- *
- *
- * Copyright (C) 2010 Amlogic Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- */
- #ifndef __TVIN_TUNER_FQ1216ME_DEMOD_H
- #define __TVIN_TUNER_FQ1216ME_DEMOD_H
- /* Standard Liniux Headers */
- #include <linux/i2c.h>
- /* Amlogic Headers */
- #include <media/amlogic/656in.h>
- extern void fq1216me_set_demod_std(tuner_std_id ptstd);
- extern int fq1216me_set_demod(void);
- extern void fq1216me_get_afc(struct tuner_parm_s *ptp);
- #endif //__TVIN_TUNER_FQ1216ME_DEMOD_H
|