From 7fdbe272cf3e9ba9f4c58dc09dc4081cec7db6bc Mon Sep 17 00:00:00 2001 From: "adam@algroup.co.uk" Date: Thu, 25 Jun 2009 13:30:57 +0000 Subject: [PATCH] Detach kernel driver --- linux/usb.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/linux/usb.c b/linux/usb.c index 8145b64a..6337c21a 100644 --- a/linux/usb.c +++ b/linux/usb.c @@ -153,6 +153,11 @@ usb_dev_handle* OpenProxmark(int verbose) { if (!handle) return NULL; + /* detach kernel driver first */ + ret = usb_detach_kernel_driver_np(handle, iface); + /* don't complain if no driver attached */ + if (ret<0 && ret != -61 && verbose) + fprintf(stderr, "detach kernel driver failed: (%d) %s!\n", ret, usb_strerror()); ret = usb_claim_interface(handle, iface); if (ret<0) { if (verbose) -- 2.39.2