]> git.karo-electronics.de Git - karo-tx-linux.git/commit
msm_serial: Use devm_clk_get() and properly return errors
authorStephen Boyd <sboyd@codeaurora.org>
Tue, 4 Jun 2013 19:25:28 +0000 (12:25 -0700)
committerDavid Brown <davidb@codeaurora.org>
Wed, 12 Jun 2013 21:43:28 +0000 (14:43 -0700)
commitb32d6532e33cb814c3f8c75d6ccf3d8c01ba0c2c
tree105e5f8a40c06cf87eb9563771e5931d3d825eb3
parent0e778b2f3d6fc5e0a2bbc7dc9f2cda3b1dd992e6
msm_serial: Use devm_clk_get() and properly return errors

Clocks are not clk_put() in this driver's error paths during
probe. The code that checks for clock errors also fails to
properly return the error code from the pclk member if it turns
out to be the failing clock, leading to potentially confusing
error values if the clk member is not an error pointer. Fix these
problems with devm_clk_get() and proper error checking.

Removing the clk_put() in msm_serial_remove() also points out
that msm_port is unused. Furthermore, msm_port is the wrong type
and so the clk_put() would be using the wrong pointer. Replace it
with the proper type and call uart_remove_one_port() to do the
proper cleanup.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: David Brown <davidb@codeaurora.org>
drivers/tty/serial/msm_serial.c