Commit 7ca01864 authored by Wolfram Sang's avatar Wolfram Sang Committed by Wolfram Sang

i2c: sh_mobile: improve success message

No user needs magic hex values, makes this debug output. Add DMA info.
Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 2d09581b
...@@ -289,6 +289,7 @@ static int sh_mobile_i2c_init(struct sh_mobile_i2c_data *pd) ...@@ -289,6 +289,7 @@ static int sh_mobile_i2c_init(struct sh_mobile_i2c_data *pd)
else else
pd->icic &= ~ICIC_ICCHB8; pd->icic &= ~ICIC_ICCHB8;
dev_dbg(pd->dev, "timing values: L/H=0x%x/0x%x\n", pd->iccl, pd->icch);
return 0; return 0;
} }
...@@ -935,9 +936,8 @@ static int sh_mobile_i2c_probe(struct platform_device *dev) ...@@ -935,9 +936,8 @@ static int sh_mobile_i2c_probe(struct platform_device *dev)
return ret; return ret;
} }
dev_info(&dev->dev, dev_info(&dev->dev, "I2C adapter %d, bus speed %lu Hz, DMA=%c\n",
"I2C adapter %d with bus speed %lu Hz (L/H=0x%x/0x%x)\n", adap->nr, pd->bus_speed, (pd->dma_rx || pd->dma_tx) ? 'y' : 'n');
adap->nr, pd->bus_speed, pd->iccl, pd->icch);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment