cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mt9p031.h (338B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef MT9P031_H
      3#define MT9P031_H
      4
      5struct v4l2_subdev;
      6
      7/*
      8 * struct mt9p031_platform_data - MT9P031 platform data
      9 * @ext_freq: Input clock frequency
     10 * @target_freq: Pixel clock frequency
     11 */
     12struct mt9p031_platform_data {
     13	unsigned int pixclk_pol:1;
     14	int ext_freq;
     15	int target_freq;
     16};
     17
     18#endif