tua9001_priv.h 432 B

1234567891011121314151617181920212223242526
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Infineon TUA9001 silicon tuner driver
  4. *
  5. * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
  6. */
  7. #ifndef TUA9001_PRIV_H
  8. #define TUA9001_PRIV_H
  9. #include "tua9001.h"
  10. #include <linux/math64.h>
  11. #include <linux/regmap.h>
  12. struct tua9001_reg_val {
  13. u8 reg;
  14. u16 val;
  15. };
  16. struct tua9001_dev {
  17. struct dvb_frontend *fe;
  18. struct i2c_client *client;
  19. struct regmap *regmap;
  20. };
  21. #endif