staging: csr: csr_wifi_hip_unifi_signal_names: Fix pointer position

Fixed pointers' positions in the csr_wifi_hip_unifi_signal_names.c file
that were identifed by checkpatch.pl tool.

Signed-off-by: Hojung Youn <amoc.yn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Hojung Youn 2012-11-03 06:10:20 +09:00 committed by Greg Kroah-Hartman
parent 65dbeb195a
commit fb7d2ebd21
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ static const struct sig_name Unifi_bulkcmd_names[] = {
{ 15, "Padding" }
};
const char* lookup_bulkcmd_name(u16 id)
const char *lookup_bulkcmd_name(u16 id)
{
if (id < 9)
return Unifi_bulkcmd_names[id].name;