Skip to content

Commit

Permalink
i2c: qup: use proper type fro clk_freq
Browse files Browse the repository at this point in the history
It is used with of_property_read_u32(), so it should be u32.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Acked-by: Bjorn Andersson <bjorn.andersson@sonymobile.com>
Fixes: 10c5a84 ('i2c: qup: New bus driver for the Qualcomm QUP I2C controller')
  • Loading branch information
Wolfram Sang committed Apr 6, 2014
1 parent 199c1df commit cf23e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/i2c/busses/i2c-qup.c
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ static int qup_i2c_probe(struct platform_device *pdev)
u32 io_mode, hw_ver, size;
int ret, fs_div, hs_div;
int src_clk_freq;
int clk_freq = 100000;
u32 clk_freq = 100000;

qup = devm_kzalloc(&pdev->dev, sizeof(*qup), GFP_KERNEL);
if (!qup)
Expand Down

0 comments on commit cf23e33

Please sign in to comment.