diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2014-09-16 09:04:35 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-10-28 13:35:19 -0200 |
commit | fff888c711764177a25a746d99a20e0549c54e3e (patch) | |
tree | 16041f25f84426826d0ac1cd0e02a590196887b7 /drivers/media/i2c | |
parent | c859470ac1bf2b89c147f7e456ac16070003d8c8 (diff) | |
download | blackbird-op-linux-fff888c711764177a25a746d99a20e0549c54e3e.tar.gz blackbird-op-linux-fff888c711764177a25a746d99a20e0549c54e3e.zip |
[media] smiapp-pll: External clock frequency isn't an output value
It's input. Move it elsewhere in the struct.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/i2c')
-rw-r--r-- | drivers/media/i2c/smiapp-pll.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/smiapp-pll.h b/drivers/media/i2c/smiapp-pll.h index 5ce2b61da3c5..2885cd76ff8c 100644 --- a/drivers/media/i2c/smiapp-pll.h +++ b/drivers/media/i2c/smiapp-pll.h @@ -53,6 +53,7 @@ struct smiapp_pll { uint8_t scale_n; uint8_t bits_per_pixel; uint32_t link_freq; + uint32_t ext_clk_freq_hz; /* output values */ uint16_t pre_pll_clk_div; @@ -62,7 +63,6 @@ struct smiapp_pll { uint16_t vt_sys_clk_div; uint16_t vt_pix_clk_div; - uint32_t ext_clk_freq_hz; uint32_t pll_ip_clk_freq_hz; uint32_t pll_op_clk_freq_hz; uint32_t op_sys_clk_freq_hz; |