cregit-Linux how code gets into the kernel

Release 4.7 drivers/media/dvb-frontends/dvb-pll.h

/*
 * descriptions + helper functions for simple dvb plls.
 */

#ifndef __DVB_PLL_H__

#define __DVB_PLL_H__

#include <linux/i2c.h>
#include "dvb_frontend.h"


#define DVB_PLL_UNDEFINED               0

#define DVB_PLL_THOMSON_DTT7579         1

#define DVB_PLL_THOMSON_DTT759X         2

#define DVB_PLL_LG_Z201                 3

#define DVB_PLL_UNKNOWN_1               4

#define DVB_PLL_TUA6010XS               5

#define DVB_PLL_ENV57H1XD5              6

#define DVB_PLL_TUA6034                 7

#define DVB_PLL_TDA665X                 8

#define DVB_PLL_TDED4                   9

#define DVB_PLL_TDHU2                  10

#define DVB_PLL_SAMSUNG_TBMV           11

#define DVB_PLL_PHILIPS_SD1878_TDA8261 12

#define DVB_PLL_OPERA1                 13

#define DVB_PLL_SAMSUNG_DTOS403IH102A  14

#define DVB_PLL_SAMSUNG_TDTC9251DH0    15

#define DVB_PLL_SAMSUNG_TBDU18132      16

#define DVB_PLL_SAMSUNG_TBMU24112      17

#define DVB_PLL_TDEE4		       18

#define DVB_PLL_THOMSON_DTT7520X       19

/**
 * Attach a dvb-pll to the supplied frontend structure.
 *
 * @param fe Frontend to attach to.
 * @param pll_addr i2c address of the PLL (if used).
 * @param i2c i2c adapter to use (set to NULL if not used).
 * @param pll_desc_id dvb_pll_desc to use.
 * @return Frontend pointer on success, NULL on failure
 */
#if IS_REACHABLE(CONFIG_DVB_PLL)
extern struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe,
					   int pll_addr,
					   struct i2c_adapter *i2c,
					   unsigned int pll_desc_id);
#else

static inline struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, int pll_addr, struct i2c_adapter *i2c, unsigned int pll_desc_id) { printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
trent piephotrent piepho3389.19%133.33%
michael krufkymichael krufky38.11%133.33%
harvey harrisonharvey harrison12.70%133.33%
Total37100.00%3100.00%

#endif #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
michael krufkymichael krufky6337.72%213.33%
trent piephotrent piepho5834.73%533.33%
andrew de quinceyandrew de quincey2716.17%213.33%
johannes stezenbachjohannes stezenbach95.39%213.33%
patrice chotardpatrice chotard42.40%16.67%
antti palosaariantti palosaari42.40%16.67%
harvey harrisonharvey harrison10.60%16.67%
arnd bergmannarnd bergmann10.60%16.67%
Total167100.00%15100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}