diff options
author | Sakari Ailus <sakari.ailus@iki.fi> | 2013-11-30 14:35:48 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-12-23 08:29:38 -0500 |
commit | ec176a6f142bb403b8a9b977a6919b556e80ea99 (patch) | |
tree | 074665169b7911d558e16a22e768f2f916a567dc /include/media | |
parent | 8c20ee6e92e435609f8d7dd0c2b4b77c8dbb3f18 (diff) |
[media] smiapp: Use types better suitable for DT
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/smiapp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/media/smiapp.h b/include/media/smiapp.h index 0b8f124a630c..268a3cdbf6cb 100644 --- a/include/media/smiapp.h +++ b/include/media/smiapp.h | |||
@@ -65,19 +65,19 @@ struct smiapp_platform_data { | |||
65 | unsigned short i2c_addr_dfl; /* Default i2c addr */ | 65 | unsigned short i2c_addr_dfl; /* Default i2c addr */ |
66 | unsigned short i2c_addr_alt; /* Alternate i2c addr */ | 66 | unsigned short i2c_addr_alt; /* Alternate i2c addr */ |
67 | 67 | ||
68 | unsigned int nvm_size; /* bytes */ | 68 | uint32_t nvm_size; /* bytes */ |
69 | unsigned int ext_clk; /* sensor external clk */ | 69 | uint32_t ext_clk; /* sensor external clk */ |
70 | 70 | ||
71 | unsigned int lanes; /* Number of CSI-2 lanes */ | 71 | unsigned int lanes; /* Number of CSI-2 lanes */ |
72 | u8 csi_signalling_mode; /* SMIAPP_CSI_SIGNALLING_MODE_* */ | 72 | uint32_t csi_signalling_mode; /* SMIAPP_CSI_SIGNALLING_MODE_* */ |
73 | const s64 *op_sys_clock; | 73 | uint64_t *op_sys_clock; |
74 | 74 | ||
75 | enum smiapp_module_board_orient module_board_orient; | 75 | enum smiapp_module_board_orient module_board_orient; |
76 | 76 | ||
77 | struct smiapp_flash_strobe_parms *strobe_setup; | 77 | struct smiapp_flash_strobe_parms *strobe_setup; |
78 | 78 | ||
79 | int (*set_xclk)(struct v4l2_subdev *sd, int hz); | 79 | int (*set_xclk)(struct v4l2_subdev *sd, int hz); |
80 | int xshutdown; /* gpio or SMIAPP_NO_XSHUTDOWN */ | 80 | int32_t xshutdown; /* gpio or SMIAPP_NO_XSHUTDOWN */ |
81 | }; | 81 | }; |
82 | 82 | ||
83 | #endif /* __SMIAPP_H_ */ | 83 | #endif /* __SMIAPP_H_ */ |