git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
de20600
)
bus/fslmc: fix to convert error msg to warning
author
Hemant Agrawal
<hemant.agrawal@nxp.com>
Fri, 11 Jan 2019 12:24:19 +0000
(12:24 +0000)
committer
Ferruh Yigit
<ferruh.yigit@intel.com>
Mon, 14 Jan 2019 16:44:29 +0000
(17:44 +0100)
This is just a information. No need to print
it as a error.
Fixes:
ce9efbf5bb09
("bus/fslmc: support dynamic logging")
Cc: stable@dpdk.org
Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
drivers/bus/fslmc/fslmc_vfio.c
patch
|
blob
|
history
diff --git
a/drivers/bus/fslmc/fslmc_vfio.c
b/drivers/bus/fslmc/fslmc_vfio.c
index
493b6e5
..
ce82a99
100644
(file)
--- a/
drivers/bus/fslmc/fslmc_vfio.c
+++ b/
drivers/bus/fslmc/fslmc_vfio.c
@@
-176,7
+176,7
@@
static int vfio_map_irq_region(struct fslmc_vfio_group *group)
vaddr = (unsigned long *)mmap(NULL, 0x1000, PROT_WRITE |
PROT_READ, MAP_SHARED, container_device_fd, 0x6030000);
if (vaddr == MAP_FAILED) {
- DPAA2_BUS_
ERR
("Unable to map region (errno = %d)", errno);
+ DPAA2_BUS_
INFO
("Unable to map region (errno = %d)", errno);
return -errno;
}