Message ID | 20220927084317.138-1-avri.altman@wdc.com |
---|---|
State | New |
Headers | show |
Series | mmc-utils: Fix a typo for ATP mid | expand |
Thanks for all your help in this matter! Cheers Mark -----Original Message----- From: Ulf Hansson <ulf.hansson@linaro.org> Sent: Tuesday, September 27, 2022 8:17 AM To: Avri Altman <avri.altman@wdc.com> Cc: linux-mmc@vger.kernel.org; Mark Kanczak <Markk@us.atpinc.com>; linux-kernel@vger.kernel.org Subject: Re: [PATCH] mmc-utils: Fix a typo for ATP mid On Tue, 27 Sept 2022 at 10:43, Avri Altman <avri.altman@wdc.com> wrote: > > 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@us.atpinc.com> > Signed-off-by: Avri Altman <avri.altman@wdc.com> Applied to git.kernel.org/pub/scm//utils/mmc/mmc-utils.git master, thanks! Kind regards Uffe > --- > 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 >
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",
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@us.atpinc.com> Signed-off-by: Avri Altman <avri.altman@wdc.com> --- lsmmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)