[PATCH 1/6] mmc: sh-mmcif: print bus clock rate on probe

2014-04-01 Thread Ben Dooks
Add a print to show the host-bus clock rate for mmcif on probe to allow easy check on what clock rate the bus clock is at. Signed-off-by: Ben Dooks ben.do...@codethink.co.uk --- drivers/mmc/host/sh_mmcif.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

Re: [PATCH 1/6] mmc: sh-mmcif: print bus clock rate on probe

2014-04-01 Thread Geert Uytterhoeven
On Tue, Apr 1, 2014 at 12:25 PM, Ben Dooks ben.do...@codethink.co.uk wrote: - dev_info(pdev-dev, driver version %s\n, DRIVER_VERSION); + dev_info(pdev-dev, driver version %s, clock rate %ldMHz\n, +DRIVER_VERSION, clk_get_rate(host-hclk) / 100); %lu (soon the

Re: [PATCH 1/6] mmc: sh-mmcif: print bus clock rate on probe

2014-04-01 Thread Laurent Pinchart
Hi Ben, Thank you for the patch. On Tuesday 01 April 2014 11:25:49 Ben Dooks wrote: Add a print to show the host-bus clock rate for mmcif on probe to allow easy check on what clock rate the bus clock is at. Signed-off-by: Ben Dooks ben.do...@codethink.co.uk ---

Re: [PATCH 1/6] mmc: sh-mmcif: print bus clock rate on probe

2014-04-01 Thread Ben Dooks
On 01/04/14 12:08, Laurent Pinchart wrote: Hi Ben, Thank you for the patch. On Tuesday 01 April 2014 11:25:49 Ben Dooks wrote: Add a print to show the host-bus clock rate for mmcif on probe to allow easy check on what clock rate the bus clock is at. Signed-off-by: Ben Dooks