All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fslmc: don't log error for other devices
@ 2019-02-06 22:04 Stephen Hemminger
  2019-02-06 22:10 ` [PATCH] fslmc: remove unneeded strdup Stephen Hemminger
  2019-02-25 15:23 ` [dpdk-stable] [PATCH] fslmc: don't log error for other devices Thomas Monjalon
  0 siblings, 2 replies; 3+ messages in thread
From: Stephen Hemminger @ 2019-02-06 22:04 UTC (permalink / raw)
  To: dev; +Cc: stable, Stephen Hemminger

When fslmc is built as part of a general distribution, the
bus code will log errors when other devices are present.

This could confuse users it is not an error.

Fixes: 50245be05d1a ("bus/fslmc: support device blacklisting")
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 drivers/bus/fslmc/fslmc_bus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/bus/fslmc/fslmc_bus.c b/drivers/bus/fslmc/fslmc_bus.c
index 44c0827ced0b..a2525780cd08 100644
--- a/drivers/bus/fslmc/fslmc_bus.c
+++ b/drivers/bus/fslmc/fslmc_bus.c
@@ -249,7 +249,7 @@ rte_fslmc_parse(const char *name, void *addr)
 	    strncmp("dpmcp", t_ptr, 5) &&
 	    strncmp("dpdmai", t_ptr, 6) &&
 	    strncmp("dpdmux", t_ptr, 6)) {
-		DPAA2_BUS_ERR("Unknown or unsupported device");
+		DPAA2_BUS_DEBUG("Unknown or unsupported device (%s)", name);
 		goto err_out;
 	}
 
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-02-25 15:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-06 22:04 [PATCH] fslmc: don't log error for other devices Stephen Hemminger
2019-02-06 22:10 ` [PATCH] fslmc: remove unneeded strdup Stephen Hemminger
2019-02-25 15:23 ` [dpdk-stable] [PATCH] fslmc: don't log error for other devices Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.