[PATCH] mmc-utils: Fix a typo for ATP mid

From: Avri Altman
Date: Tue Sep 27 2022 - 04:43:43 EST


Manufacturer id 0x44 is assign to ATP by 3c-LLC, and not to SanDisk.
mmc-utils inherited this typo when lsmmc got merged into it.

fixes: 4af1749d2350 (mmc-utils: Merge the lsmmc tool into mmc-utils)

Reported-by: Mark Kanczak <Markk@xxxxxxxxxxxxx>
Signed-off-by: Avri Altman <avri.altman@xxxxxxx>
---
lsmmc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lsmmc.c b/lsmmc.c
index 05d59e8..55da3aa 100644
--- a/lsmmc.c
+++ b/lsmmc.c
@@ -237,7 +237,7 @@ struct ids_database database[] = {
{
.type = "mmc",
.id = 0x44,
- .manufacturer = "SanDisk",
+ .manufacturer = "ATP",
},
{
.type = "mmc",
--
2.17.1