aboutsummaryrefslogtreecommitdiff
path: root/hdata
diff options
context:
space:
mode:
authorVasant Hegde <hegdevasant@linux.vnet.ibm.com>2019-02-18 13:54:46 +0530
committerStewart Smith <stewart@linux.ibm.com>2019-02-18 22:12:37 -0600
commitdd9b61cdfca7225f7b4afebfb65fc0ee47488e37 (patch)
tree76c5213c0fdff536c2256af06b5e75acdd1b7ce3 /hdata
parentb1d421875b4c6282cef349f27964f7e8885f06ee (diff)
downloadskiboot-dd9b61cdfca7225f7b4afebfb65fc0ee47488e37.zip
skiboot-dd9b61cdfca7225f7b4afebfb65fc0ee47488e37.tar.gz
skiboot-dd9b61cdfca7225f7b4afebfb65fc0ee47488e37.tar.bz2
hdata/i2c: Reduce severity of log message
Looks like WARNING message resulting in some unnecessary bug report. Lets reduce severity to PR_NOTICE. Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'hdata')
-rw-r--r--hdata/i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hdata/i2c.c b/hdata/i2c.c
index 6b797bc..e3615a5 100644
--- a/hdata/i2c.c
+++ b/hdata/i2c.c
@@ -323,7 +323,7 @@ int parse_i2c_devs(const struct HDIF_common_hdr *hdr, int idata_index,
* hdat. Log both cases to see what/where/why.
*/
if (!type || dev->type == 0xFF) {
- prlog(PR_WARNING, "HDAT I2C: found e%dp%d - %s@%x dp:%02x (%#x:%s)\n",
+ prlog(PR_NOTICE, "HDAT I2C: found e%dp%d - %s@%x dp:%02x (%#x:%s)\n",
dev->i2cm_engine, dev->i2cm_port, name, dev_addr,
dev->dev_port, purpose, info->label);
continue;