Skip to content

Commit

Permalink
staging: csr: csr_wifi_hip_unifi_signal_names: fix whitespaced paddings
Browse files Browse the repository at this point in the history
Fixed whitespace paddings in the csr_wifi_hip_unifi_signal_names.c file
that were, though, not identified by checkpatch.pl tool.

Signed-off-by: Hojung Youn <amoc.yn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Hojung Youn authored and Greg Kroah-Hartman committed Nov 6, 2012
1 parent a90770e commit 65dbeb1
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions drivers/staging/csr/csr_wifi_hip_unifi_signal_names.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@
#include "csr_wifi_hip_unifi.h"

struct sig_name {
s16 id;
s16 id;
const char *name;
};

static const struct sig_name Unifi_bulkcmd_names[] = {
{ 0, "SignalCmd" },
{ 1, "CopyToHost" },
{ 2, "CopyToHostAck" },
{ 3, "CopyFromHost" },
{ 4, "CopyFromHostAck" },
{ 5, "ClearSlot" },
{ 6, "CopyOverlay" },
{ 7, "CopyOverlayAck" },
{ 8, "CopyFromHostAndClearSlot" },
{ 15, "Padding" }
{ 0, "SignalCmd" },
{ 1, "CopyToHost" },
{ 2, "CopyToHostAck" },
{ 3, "CopyFromHost" },
{ 4, "CopyFromHostAck" },
{ 5, "ClearSlot" },
{ 6, "CopyOverlay" },
{ 7, "CopyOverlayAck" },
{ 8, "CopyFromHostAndClearSlot" },
{ 15, "Padding" }
};

const char* lookup_bulkcmd_name(u16 id)
Expand Down

0 comments on commit 65dbeb1

Please sign in to comment.