On 28 November 2017 at 09:24, Bastian Stender <bst@xxxxxxxxxxxxxx> wrote: > The sysfs entry "pre_eol_info" was missing the 0x prefix to identify it > as hex formatted. > > Fixes: 46bc5c408e4e ("mmc: core: Export device lifetime information through sysfs") > Signed-off-by: Bastian Stender <bst@xxxxxxxxxxxxxx> Thanks, applied for fixes! I added a stable tag and also took the liberty of amending the change to cover SD-cards (as that was also a part of the commit you fix). Kind regards Uffe > --- > Changes since (implicit) v1 ("mmc: core: prepend 0x to hex numbers in sysfs"): > - split into two patches, each fixing its introducing commit (as > requested by Ulf Hansson) > > Changes since v2: > - commit messages were accidentally swapped, fix it > - fix typo in commit message > --- > drivers/mmc/core/mmc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c > index 36217ad5e9b1..b935ad895701 100644 > --- a/drivers/mmc/core/mmc.c > +++ b/drivers/mmc/core/mmc.c > @@ -780,7 +780,7 @@ MMC_DEV_ATTR(manfid, "0x%06x\n", card->cid.manfid); > MMC_DEV_ATTR(name, "%s\n", card->cid.prod_name); > MMC_DEV_ATTR(oemid, "0x%04x\n", card->cid.oemid); > MMC_DEV_ATTR(prv, "0x%x\n", card->cid.prv); > -MMC_DEV_ATTR(pre_eol_info, "%02x\n", card->ext_csd.pre_eol_info); > +MMC_DEV_ATTR(pre_eol_info, "0x%02x\n", card->ext_csd.pre_eol_info); > MMC_DEV_ATTR(life_time, "0x%02x 0x%02x\n", > card->ext_csd.device_life_time_est_typ_a, > card->ext_csd.device_life_time_est_typ_b); > -- > 2.11.0 > -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html