Skip to content

Commit 534d3fa

Browse files
committed
reset: berlin: replace unsigned with unsigned int
Fixes a checkpatch warning: WARNING: Prefer 'unsigned int' to bare use of 'unsigned' raspberrypi#55: FILE: drivers/reset/reset-berlin.c:55: + unsigned offset, bit; Signed-off-by: Philipp Zabel <[email protected]>
1 parent 1c5e05c commit 534d3fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/reset/reset-berlin.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ static const struct reset_control_ops berlin_reset_ops = {
5555
static int berlin_reset_xlate(struct reset_controller_dev *rcdev,
5656
const struct of_phandle_args *reset_spec)
5757
{
58-
unsigned offset, bit;
58+
unsigned int offset, bit;
5959

6060
offset = reset_spec->args[0];
6161
bit = reset_spec->args[1];

0 commit comments

Comments
 (0)