From 0963c2f012eb67527fd5caa1920b32666bf2d562 Mon Sep 17 00:00:00 2001 From: Leonid Lobachev Date: Mon, 23 Sep 2019 14:04:01 -0700 Subject: [PATCH] staging: gasket: page_table: fix comment in components_to_dev_address Change-Id: Id343101cfdcad2354adb1fc03699e826b14192bb Signed-off-by: Nick Ewalt Signed-off-by: Todd Poynor --- gasket_page_table.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gasket_page_table.c b/gasket_page_table.c index a29426a..1c35c0a 100644 --- a/gasket_page_table.c +++ b/gasket_page_table.c @@ -713,13 +713,13 @@ static inline bool gasket_addr_is_simple(struct gasket_page_table *pg_tbl, * Convert (simple, page, offset) into a device address. * Examples: * Simple page 0, offset 32: - * Input (0, 0, 32), Output 0x20 + * Input (1, 0, 32), Output 0x20 * Simple page 1000, offset 511: - * Input (0, 1000, 512), Output 0x3E81FF + * Input (1, 1000, 511), Output 0x3E81FF * Extended page 0, offset 32: * Input (0, 0, 32), Output 0x8000000020 * Extended page 1000, offset 511: - * Input (1, 1000, 512), Output 0x8003E81FF + * Input (0, 1000, 511), Output 0x8003E81FF */ static ulong gasket_components_to_dev_address(struct gasket_page_table *pg_tbl, int is_simple, uint page_index,