cxd2099.h 397 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * cxd2099.h: Driver for the Sony CXD2099AR Common Interface Controller
  4. *
  5. * Copyright (C) 2010-2011 Digital Devices GmbH
  6. */
  7. #ifndef _CXD2099_H_
  8. #define _CXD2099_H_
  9. #include <media/dvb_ca_en50221.h>
  10. struct cxd2099_cfg {
  11. u32 bitrate;
  12. u8 polarity;
  13. u8 clock_mode;
  14. u32 max_i2c;
  15. /* ptr to DVB CA struct */
  16. struct dvb_ca_en50221 **en;
  17. };
  18. #endif