summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHemanth Selam <hemanth.selam@gmail.com>2026-09-09 18:05:01 +0530
committerRob Herring (Arm) <robh@kernel.org>2026-09-15 09:11:31 -0500
commit135686ed2e0b8df8a4e7abff978ca82efc0444d5 (patch)
tree80f0caee2fcf0162ded3d2e5ee8e9da8424c91f0
parent8273a4059c41748d21a7dfc076407396ddca25b5 (diff)
downloadlinux-next-135686ed2e0b8df8a4e7abff978ca82efc0444d5.tar.gz
linux-next-135686ed2e0b8df8a4e7abff978ca82efc0444d5.zip
of: fdt: fix "Cound" typo in fdt_translate_address()
The comment above the count_cells() call reads "Cound address cells" where it should read "Count address cells", which is what the call below it does. Comment only, no functional change. Assisted-by: Cursor:claude-opus-5 Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com> Link: https://patch.msgid.link/20260909123501.215711-1-hemanth.selam@gmail.com Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
-rw-r--r--drivers/of/fdt_address.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/fdt_address.c b/drivers/of/fdt_address.c
index f358d2c80754..2e4e46a58cb6 100644
--- a/drivers/of/fdt_address.c
+++ b/drivers/of/fdt_address.c
@@ -172,7 +172,7 @@ static u64 __init fdt_translate_address(const void *blob, int node_offset)
goto bail;
bus = &of_busses[0];
- /* Cound address cells & copy address locally */
+ /* Count address cells & copy address locally */
bus->count_cells(blob, parent, &na, &ns);
if (!OF_CHECK_COUNTS(na, ns)) {
pr_err("Bad cell count for %s\n",