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

mmc: sdhci-of-arasan: Fixed kernel-doc format warning

Commit 36c6aadaae86 ("mmc: sdhci-of-arasan: Add support for Intel Keem Bay")
introduces syscon map sdhci_arasan_update_support64b(). Unfortunately,
kernel-doc format script tool has not been run before and causing warning
on the documentation style.

Below is the output when running the kernel-doc script tool:
drivers/mmc/host/sdhci-of-arasan.c:1388: warning: contents before sections

Let's fix this by using standard conventions kernel-doc format.

Fixes: 36c6aadaae86 ("mmc: sdhci-of-arasan: Add support for Intel Keem Bay")
Signed-off-by: Muhammad Husaini Zulkifli <muhammad.husaini.zulkifli@intel.com>
Acked-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Link: https://lore.kernel.org/r/20210111155001.12307-2-muhammad.husaini.zulkifli@intel.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

authored by

Muhammad Husaini Zulkifli and committed by
Ulf Hansson
973c7c99 9476e27b

+5 -6
+5 -6
drivers/mmc/host/sdhci-of-arasan.c
··· 1380 1380 1381 1381 /** 1382 1382 * sdhci_arasan_update_support64b - Set SUPPORT_64B (64-bit System Bus Support) 1383 + * @host: The sdhci_host 1384 + * @value: The value to write 1383 1385 * 1384 1386 * This should be set based on the System Address Bus. 1385 1387 * 0: the Core supports only 32-bit System Address Bus. 1386 1388 * 1: the Core supports 64-bit System Address Bus. 1387 1389 * 1388 - * NOTES: 1389 - * - For Keem Bay, it is required to clear this bit. Its default value is 1'b1. 1390 - * Keem Bay does not support 64-bit access. 1391 - * 1392 - * @host: The sdhci_host 1393 - * @value: The value to write 1390 + * NOTE: 1391 + * For Keem Bay, it is required to clear this bit. Its default value is 1'b1. 1392 + * Keem Bay does not support 64-bit access. 1394 1393 */ 1395 1394 static void sdhci_arasan_update_support64b(struct sdhci_host *host, u32 value) 1396 1395 {