GFS2: Check for glock already held in gfs2_getxattr
[deliverable/linux.git] / drivers / staging / csr / csr_wifi_hip_unifi_signal_names.c
CommitLineData
635d2b00
GKH
1/*****************************************************************************
2
3 (c) Cambridge Silicon Radio Limited 2011
4 All rights reserved and confidential information of CSR
5
6 Refer to LICENSE.txt included with this source for details
7 on the license terms.
8
9*****************************************************************************/
10
11#include "csr_wifi_hip_unifi.h"
12
a90770e0 13struct sig_name {
65dbeb19 14 s16 id;
279dda68 15 const char *name;
635d2b00
GKH
16};
17
18static const struct sig_name Unifi_bulkcmd_names[] = {
65dbeb19
HY
19 { 0, "SignalCmd" },
20 { 1, "CopyToHost" },
21 { 2, "CopyToHostAck" },
22 { 3, "CopyFromHost" },
23 { 4, "CopyFromHostAck" },
24 { 5, "ClearSlot" },
25 { 6, "CopyOverlay" },
26 { 7, "CopyOverlayAck" },
27 { 8, "CopyFromHostAndClearSlot" },
28 { 15, "Padding" }
635d2b00
GKH
29};
30
fb7d2ebd 31const char *lookup_bulkcmd_name(u16 id)
635d2b00 32{
279dda68 33 if (id < 9)
279dda68 34 return Unifi_bulkcmd_names[id].name;
279dda68 35 if (id == 15)
279dda68 36 return "Padding";
279dda68
HY
37
38 return "UNKNOWN";
635d2b00
GKH
39}
40
41
This page took 0.123823 seconds and 5 git commands to generate.