tlclk: clean an indentation issue, remove extraneous tabs
Trivial fix to clean up an indentation issue, remove tabs Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b8ae30a702
commit
bc702adeba
|
@ -525,9 +525,9 @@ static ssize_t store_select_amcb2_transmit_clock(struct device *d,
|
|||
SET_PORT_BITS(TLCLK_REG0, 0xfc, 1);
|
||||
break;
|
||||
}
|
||||
} else
|
||||
} else {
|
||||
SET_PORT_BITS(TLCLK_REG3, 0xc7, val << 3);
|
||||
|
||||
}
|
||||
spin_unlock_irqrestore(&event_lock, flags);
|
||||
|
||||
return strnlen(buf, count);
|
||||
|
@ -567,8 +567,9 @@ static ssize_t store_select_amcb1_transmit_clock(struct device *d,
|
|||
SET_PORT_BITS(TLCLK_REG0, 0xfc, 1);
|
||||
break;
|
||||
}
|
||||
} else
|
||||
} else {
|
||||
SET_PORT_BITS(TLCLK_REG3, 0xf8, val);
|
||||
}
|
||||
spin_unlock_irqrestore(&event_lock, flags);
|
||||
|
||||
return strnlen(buf, count);
|
||||
|
|
Loading…
Reference in New Issue