ov2659.h 461 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Omnivision OV2659 CMOS Image Sensor driver
  4. *
  5. * Copyright (C) 2015 Texas Instruments, Inc.
  6. *
  7. * Benoit Parrot <[email protected]>
  8. * Lad, Prabhakar <[email protected]>
  9. */
  10. #ifndef OV2659_H
  11. #define OV2659_H
  12. /**
  13. * struct ov2659_platform_data - ov2659 driver platform data
  14. * @link_frequency: target pixel clock frequency
  15. */
  16. struct ov2659_platform_data {
  17. s64 link_frequency;
  18. };
  19. #endif /* OV2659_H */