cxd2099.h 803 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * cxd2099.h: Driver for the Sony CXD2099AR Common Interface Controller
  3. *
  4. * Copyright (C) 2010-2011 Digital Devices GmbH
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * version 2 only, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. */
  15. #ifndef _CXD2099_H_
  16. #define _CXD2099_H_
  17. #include <media/dvb_ca_en50221.h>
  18. struct cxd2099_cfg {
  19. u32 bitrate;
  20. u8 polarity;
  21. u8 clock_mode;
  22. u32 max_i2c;
  23. /* ptr to DVB CA struct */
  24. struct dvb_ca_en50221 **en;
  25. };
  26. #endif