qt1010.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Driver for Quantek QT1010 silicon tuner
  3. *
  4. * Copyright (C) 2006 Antti Palosaari <crope@iki.fi>
  5. * Aapo Tahkola <aet@rasterburn.org>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. #ifndef QT1010_H
  18. #define QT1010_H
  19. #include "dvb_frontend.h"
  20. struct qt1010_config {
  21. u8 i2c_address;
  22. };
  23. /**
  24. * Attach a qt1010 tuner to the supplied frontend structure.
  25. *
  26. * @param fe frontend to attach to
  27. * @param i2c i2c adapter to use
  28. * @param cfg tuner hw based configuration
  29. * @return fe pointer on success, NULL on failure
  30. */
  31. #if IS_REACHABLE(CONFIG_MEDIA_TUNER_QT1010)
  32. extern struct dvb_frontend *qt1010_attach(struct dvb_frontend *fe,
  33. struct i2c_adapter *i2c,
  34. struct qt1010_config *cfg);
  35. #else
  36. static inline struct dvb_frontend *qt1010_attach(struct dvb_frontend *fe,
  37. struct i2c_adapter *i2c,
  38. struct qt1010_config *cfg)
  39. {
  40. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  41. return NULL;
  42. }
  43. #endif // CONFIG_MEDIA_TUNER_QT1010
  44. #endif