Commit d87814a3 authored by Julia Lawall's avatar Julia Lawall Committed by Lee Jones

mfd: tc3589x: Improve function-level documentation

Use the correct function name in one case and adjust a variable name to
that of the corresponding function parameter in another case.

Issue detected using Coccinelle (http://coccinelle.lip6.fr/)
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 937d3a0a
...@@ -53,7 +53,7 @@ int tc3589x_reg_read(struct tc3589x *tc3589x, u8 reg) ...@@ -53,7 +53,7 @@ int tc3589x_reg_read(struct tc3589x *tc3589x, u8 reg)
EXPORT_SYMBOL_GPL(tc3589x_reg_read); EXPORT_SYMBOL_GPL(tc3589x_reg_read);
/** /**
* tc3589x_reg_read() - write a single TC3589x register * tc3589x_reg_write() - write a single TC3589x register
* @tc3589x: Device to write to * @tc3589x: Device to write to
* @reg: Register to read * @reg: Register to read
* @data: Value to write * @data: Value to write
...@@ -118,7 +118,7 @@ EXPORT_SYMBOL_GPL(tc3589x_block_write); ...@@ -118,7 +118,7 @@ EXPORT_SYMBOL_GPL(tc3589x_block_write);
* @tc3589x: Device to write to * @tc3589x: Device to write to
* @reg: Register to write * @reg: Register to write
* @mask: Mask of bits to set * @mask: Mask of bits to set
* @values: Value to set * @val: Value to set
*/ */
int tc3589x_set_bits(struct tc3589x *tc3589x, u8 reg, u8 mask, u8 val) int tc3589x_set_bits(struct tc3589x *tc3589x, u8 reg, u8 mask, u8 val)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment