From 7c7a11204633e145178e4544b6418c59da33b2c7 Mon Sep 17 00:00:00 2001 From: Gerhard Sittig Date: Sun, 9 Jun 2019 10:15:37 +0200 Subject: [PATCH] brymen-bm86x: rename specific Brymen BM86x driver (libusb implementation) The src/hardware/brymen-bm86x/ source code contains specific support for the Brymen BM86x devices, and directly depends on the libusb library. Rename the registered device (append the "-usb" suffix) before adding BM86x support to the serial-dmm driver. --- src/hardware/brymen-bm86x/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hardware/brymen-bm86x/api.c b/src/hardware/brymen-bm86x/api.c index f7d9d23f..a6c45e3a 100644 --- a/src/hardware/brymen-bm86x/api.c +++ b/src/hardware/brymen-bm86x/api.c @@ -200,7 +200,7 @@ static int dev_acquisition_stop(struct sr_dev_inst *sdi) } static struct sr_dev_driver brymen_bm86x_driver_info = { - .name = "brymen-bm86x", + .name = "brymen-bm86x-usb", .longname = "Brymen BM86X", .api_version = 1, .init = std_init,