From 3e17e3ad2260c7427bd375e9105cbf0b7e5cb095 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Mon, 16 Dec 2013 10:57:42 +0200 Subject: [PATCH] hciemu: Print error in case hci_vhci is not loaded Error message should indicate that module is not loaded: Opening /dev/vhci failed: No such file or directory --- src/shared/hciemu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shared/hciemu.c b/src/shared/hciemu.c index c2b474832..9f4bfaf5b 100644 --- a/src/shared/hciemu.c +++ b/src/shared/hciemu.c @@ -31,6 +31,7 @@ #include #include #include +#include #include #include @@ -216,6 +217,7 @@ static bool create_vhci(struct hciemu *hciemu) fd = open("/dev/vhci", O_RDWR | O_NONBLOCK | O_CLOEXEC); if (fd < 0) { + perror("Opening /dev/vhci failed"); btdev_destroy(btdev); return false; } -- 2.47.3