mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-05 23:52:27 +08:00
Detach kernel driver
This commit is contained in:
parent
5aad6db03c
commit
7fdbe272cf
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue