]> git.droids-corp.org - dpdk.git/commitdiff
bus/fslmc: do not log messages if bus not present
authorStephen Hemminger <stephen@networkplumber.org>
Wed, 25 Apr 2018 23:16:37 +0000 (16:16 -0700)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 26 Apr 2018 15:47:09 +0000 (17:47 +0200)
A typical distribution will compile with default config and all
buses enabled. Therefore every driver should be silent and not
log anything for this normal case.

This patch gets rid of these messages when running on basic x86
environment such as bare metal or VM.

fslmc: DPAA2: DPRC not available
fslmc: FSLMC Bus Not Available. Skipping

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
drivers/bus/fslmc/fslmc_bus.c
drivers/bus/fslmc/fslmc_vfio.c

index d0b32611fe085ac8fbd0cdd795d478f1e01e1cb0..943c01b2874d84348ab2021f05f257a1eda9adb4 100644 (file)
@@ -255,7 +255,7 @@ scan_fail_cleanup:
        /* Remove all devices in the list */
        cleanup_fslmc_device_list();
 scan_fail:
-       DPAA2_BUS_INFO("FSLMC Bus Not Available. Skipping");
+       DPAA2_BUS_DEBUG("FSLMC Bus Not Available. Skipping");
        /* Irrespective of failure, scan only return success */
        return 0;
 }
index 675d160ba3a82b420d5447b0b8653357c938fd58..749d92dc3fc918dac4c956f9ff97533686840bfc 100644 (file)
@@ -74,7 +74,7 @@ fslmc_get_container_group(int *groupid)
        if (!g_container) {
                container = getenv("DPRC");
                if (container == NULL) {
-                       DPAA2_BUS_INFO("DPAA2: DPRC not available");
+                       DPAA2_BUS_DEBUG("DPAA2: DPRC not available");
                        return -EINVAL;
                }