From 97c2710b2c985132ed6a28caf9741ccbcfb23491 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 26 Feb 2017 15:43:35 +0100 Subject: [PATCH] hwdriver: Drop unneeded debug message. The logs already show scan attempts per-driver, no need to also log the init per-driver, since that's always happening and cannot (normally) fail. --- src/hwdriver.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hwdriver.c b/src/hwdriver.c index 20fc3bb9..dcf9b1f4 100644 --- a/src/hwdriver.c +++ b/src/hwdriver.c @@ -391,7 +391,6 @@ SR_API int sr_driver_init(struct sr_context *ctx, struct sr_dev_driver *driver) return SR_ERR_ARG; } - sr_spew("Initializing driver '%s'.", driver->name); if ((ret = driver->init(driver, ctx)) < 0) sr_err("Failed to initialize the driver: %d.", ret);