cx23885-ioctl.h 603 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Driver for the Conexant CX23885/7/8 PCIe bridge
  4. *
  5. * Various common ioctl() support functions
  6. *
  7. * Copyright (c) 2009 Andy Walls <[email protected]>
  8. */
  9. #ifndef _CX23885_IOCTL_H_
  10. #define _CX23885_IOCTL_H_
  11. int cx23885_g_chip_info(struct file *file, void *fh,
  12. struct v4l2_dbg_chip_info *chip);
  13. #ifdef CONFIG_VIDEO_ADV_DEBUG
  14. int cx23885_g_register(struct file *file, void *fh,
  15. struct v4l2_dbg_register *reg);
  16. int cx23885_s_register(struct file *file, void *fh,
  17. const struct v4l2_dbg_register *reg);
  18. #endif
  19. #endif