drxk.h 287 B

123456789101112131415
  1. #ifndef _DRXK_H_
  2. #define _DRXK_H_
  3. #include <linux/types.h>
  4. #include <linux/i2c.h>
  5. struct drxk_config {
  6. u8 adr;
  7. u32 single_master : 1;
  8. };
  9. extern struct dvb_frontend *drxk_attach(const struct drxk_config *config,
  10. struct i2c_adapter *i2c,
  11. struct dvb_frontend **fe_t);
  12. #endif