forked from Minki/linux
e4f4f8758b
The microcode firmware provided on Terratec H5 seems to be different. Add a parameter to allow specifying a different firmware per-device. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
17 lines
316 B
C
17 lines
316 B
C
#ifndef _DRXK_H_
|
|
#define _DRXK_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/i2c.h>
|
|
|
|
struct drxk_config {
|
|
u8 adr;
|
|
u32 single_master : 1;
|
|
const char *microcode_name;
|
|
};
|
|
|
|
extern struct dvb_frontend *drxk_attach(const struct drxk_config *config,
|
|
struct i2c_adapter *i2c,
|
|
struct dvb_frontend **fe_t);
|
|
#endif
|