summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2006-07-08 11:45:21 +0000
committerMarcel Holtmann <marcel@holtmann.org>2006-07-08 11:45:21 +0000
commit39519245f25c517424d1f2ccbed07777c8e060fa (patch)
treef004c53fe7187cbe51d090b6b0fc094730b768d2 /src
parent0ed4f8572e1b32b4dd57304db14351f0e0c59119 (diff)
Add adapter type for SDIO
Diffstat (limited to 'src')
-rw-r--r--src/hci.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/hci.c b/src/hci.c
index 977c60eb..6fa61831 100644
--- a/src/hci.c
+++ b/src/hci.c
@@ -138,8 +138,8 @@ static int hci_str2uint(hci_map *map, char *str, unsigned int *val)
char *hci_dtypetostr(int type)
{
switch (type) {
- case HCI_VHCI:
- return "VHCI";
+ case HCI_VIRTUAL:
+ return "VIRTUAL";
case HCI_USB:
return "USB";
case HCI_PCCARD:
@@ -150,8 +150,10 @@ char *hci_dtypetostr(int type)
return "RS232";
case HCI_PCI:
return "PCI";
+ case HCI_SDIO:
+ return "SDIO";
default:
- return "UKNW";
+ return "UNKNOWN";
}
}