Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

HSI: omap_ssi_core: fix kilo to be "k" not "K"

Kilo should be "k" not "K", fix it it comments and messages.

Signed-off-by: Pavel Machek <pavel@ucw.cz>

index 88e48b3..41a09f5 100644

Signed-off-by: Sebastian Reichel <sre@kernel.org>

authored by

Pavel Machek and committed by
Sebastian Reichel
3210b4fc 2bd6bf03

+3 -3
+3 -3
drivers/hsi/controllers/omap_ssi_core.c
··· 334 334 case POST_RATE_CHANGE: 335 335 dev_dbg(&ssi->device, "post rate change (%lu -> %lu)\n", 336 336 clk_data->old_rate, clk_data->new_rate); 337 - omap_ssi->fck_rate = DIV_ROUND_CLOSEST(clk_data->new_rate, 1000); /* KHz */ 337 + omap_ssi->fck_rate = DIV_ROUND_CLOSEST(clk_data->new_rate, 1000); /* kHz */ 338 338 339 339 for (i = 0; i < ssi->num_ports; i++) { 340 340 omap_port = omap_ssi->port[i]; ··· 467 467 } 468 468 /* Resetting GDD */ 469 469 writel_relaxed(SSI_SWRESET, omap_ssi->gdd + SSI_GDD_GRST_REG); 470 - /* Get FCK rate in KHz */ 470 + /* Get FCK rate in kHz */ 471 471 omap_ssi->fck_rate = DIV_ROUND_CLOSEST(ssi_get_clk_rate(ssi), 1000); 472 - dev_dbg(&ssi->device, "SSI fck rate %lu KHz\n", omap_ssi->fck_rate); 472 + dev_dbg(&ssi->device, "SSI fck rate %lu kHz\n", omap_ssi->fck_rate); 473 473 474 474 writel_relaxed(SSI_CLK_AUTOGATING_ON, omap_ssi->sys + SSI_GDD_GCR_REG); 475 475 omap_ssi->gdd_gcr = SSI_CLK_AUTOGATING_ON;