[Bluetooth] Add HCI device identifier for SDIO cards
This patch assigns the next free HCI device identifier to Bluetooth devices based on the SDIO interface. Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
committed by
David S. Miller
parent
9c724357f4
commit
0ac53939a0
@ -16,7 +16,7 @@
|
||||
static inline char *typetostr(int type)
|
||||
{
|
||||
switch (type) {
|
||||
case HCI_VHCI:
|
||||
case HCI_VIRTUAL:
|
||||
return "VIRTUAL";
|
||||
case HCI_USB:
|
||||
return "USB";
|
||||
@ -28,6 +28,8 @@ static inline char *typetostr(int type)
|
||||
return "RS232";
|
||||
case HCI_PCI:
|
||||
return "PCI";
|
||||
case HCI_SDIO:
|
||||
return "SDIO";
|
||||
default:
|
||||
return "UNKNOWN";
|
||||
}
|
||||
|
Reference in New Issue
Block a user