GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / staging / dream / camera / mt9d112.h
blobc678996f9e2ba3e48a2e906ee10cc6647135f234
1 /*
2 * Copyright (C) 2008-2009 QUALCOMM Incorporated.
3 */
5 #ifndef MT9D112_H
6 #define MT9D112_H
8 #include <linux/types.h>
9 #include <mach/camera.h>
11 enum mt9d112_width {
12 WORD_LEN,
13 BYTE_LEN
16 struct mt9d112_i2c_reg_conf {
17 unsigned short waddr;
18 unsigned short wdata;
19 enum mt9d112_width width;
20 unsigned short mdelay_time;
23 struct mt9d112_reg {
24 const struct register_address_value_pair *prev_snap_reg_settings;
25 uint16_t prev_snap_reg_settings_size;
26 const struct register_address_value_pair *noise_reduction_reg_settings;
27 uint16_t noise_reduction_reg_settings_size;
28 const struct mt9d112_i2c_reg_conf *plltbl;
29 uint16_t plltbl_size;
30 const struct mt9d112_i2c_reg_conf *stbl;
31 uint16_t stbl_size;
32 const struct mt9d112_i2c_reg_conf *rftbl;
33 uint16_t rftbl_size;
36 #endif /* MT9D112_H */