mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
net: rfkill: add missing line break
Trivial patch adding a missing line break on rfkill_claim_show(). Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com> Acked-by: Ivo van Doorn <IvDoorn@gmail.co> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
67d2e2dfab
commit
988b02f1bf
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ static ssize_t rfkill_claim_show(struct device *dev,
|
||||||
{
|
{
|
||||||
struct rfkill *rfkill = to_rfkill(dev);
|
struct rfkill *rfkill = to_rfkill(dev);
|
||||||
|
|
||||||
return sprintf(buf, "%d", rfkill->user_claim);
|
return sprintf(buf, "%d\n", rfkill->user_claim);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t rfkill_claim_store(struct device *dev,
|
static ssize_t rfkill_claim_store(struct device *dev,
|
||||||
|
|
Loading…
Reference in a new issue