diff options
author | Michael Walle <michael@walle.cc> | 2022-05-12 13:20:27 +0200 |
---|---|---|
committer | Pratyush Yadav <p.yadav@ti.com> | 2022-05-12 17:56:44 +0530 |
commit | c47452194641b5d27c20e557c84a46c85fd7ce37 (patch) | |
tree | 31703ca9a127807f93bffd7f1501d0c8a34fa118 /drivers | |
parent | cdbc44dbb2c73d8bafa1a8ae0d780608be5dbd40 (diff) | |
download | linux-c47452194641b5d27c20e557c84a46c85fd7ce37.tar.bz2 |
mtd: spi-nor: debugfs: fix format specifier
The intention was to print the JEDEC ID in the following format:
nn nn nn
In this case format specifier has to be "%*ph". Fix it.
Fixes: 0257be79fc4a ("mtd: spi-nor: expose internal parameters via debugfs")
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Michael Walle <michael@walle.cc>
Signed-off-by: Pratyush Yadav <p.yadav@ti.com>
Link: https://lore.kernel.org/r/20220512112027.3771734-1-michael@walle.cc
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/spi-nor/debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi-nor/debugfs.c b/drivers/mtd/spi-nor/debugfs.c index 1949905eefea..eaf84f7a0676 100644 --- a/drivers/mtd/spi-nor/debugfs.c +++ b/drivers/mtd/spi-nor/debugfs.c @@ -81,7 +81,7 @@ static int spi_nor_params_show(struct seq_file *s, void *data) int i; seq_printf(s, "name\t\t%s\n", info->name); - seq_printf(s, "id\t\t%*phn\n", info->id_len, info->id); + seq_printf(s, "id\t\t%*ph\n", info->id_len, info->id); string_get_size(params->size, 1, STRING_UNITS_2, buf, sizeof(buf)); seq_printf(s, "size\t\t%s\n", buf); seq_printf(s, "write size\t%u\n", params->writesize); |