cregit-Linux how code gets into the kernel

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

/*
   Driver for the Spase sp887x demodulator
*/

#ifndef SP887X_H

#define SP887X_H

#include <linux/dvb/frontend.h>
#include <linux/firmware.h>


struct sp887x_config
{
	/* the demodulator's i2c address */
	
u8 demod_address;

	/* request firmware for device */
	
int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name);
};

#if IS_REACHABLE(CONFIG_DVB_SP887X)
extern struct dvb_frontend* sp887x_attach(const struct sp887x_config* config,
					  struct i2c_adapter* i2c);
#else

static inline struct dvb_frontend* sp887x_attach(const struct sp887x_config* config, struct i2c_adapter* i2c) { printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
andrew de quinceyandrew de quincey3096.77%150.00%
harvey harrisonharvey harrison13.23%150.00%
Total31100.00%2100.00%

#endif // CONFIG_DVB_SP887X #endif // SP887X_H

Overall Contributors

PersonTokensPropCommitsCommitProp
michael hunoldmichael hunold6761.47%125.00%
andrew de quinceyandrew de quincey4036.70%125.00%
arnd bergmannarnd bergmann10.92%125.00%
harvey harrisonharvey harrison10.92%125.00%
Total109100.00%4100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}