Skip to content

Commit

Permalink
rt2x00: Fix trivial log message
Browse files Browse the repository at this point in the history
Fix trivial log message.

Signed-off-by: Luis Correia <luis.f.correia@gmail.com>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Luis Correia authored and John W. Linville committed Mar 13, 2008
1 parent fd07e06 commit 61191fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion drivers/net/wireless/rt2x00/rt2500usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@ static void rt2500usb_led_brightness(struct led_classdev *led_cdev,

if (in_atomic()) {
NOTICE(led->rt2x00dev,
"Ignoring LED brightness command for led %d", led->type);
"Ignoring LED brightness command for led %d\n",
led->type);
return;
}

Expand Down
3 changes: 2 additions & 1 deletion drivers/net/wireless/rt2x00/rt73usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,8 @@ static void rt73usb_led_brightness(struct led_classdev *led_cdev,

if (in_atomic()) {
NOTICE(led->rt2x00dev,
"Ignoring LED brightness command for led %d", led->type);
"Ignoring LED brightness command for led %d\n",
led->type);
return;
}

Expand Down

0 comments on commit 61191fb

Please sign in to comment.