On 02/06/16 03:12, Dave Hansen wrote: > > From: Dave Hansen <[email protected]> > > Another straightforward replacement of magic numbers. > > Signed-off-by: Dave Hansen <[email protected]> > Cc: Adrian Hunter <[email protected]> > Cc: Ulf Hansson <[email protected]> > Cc: [email protected]
Acked-by: Adrian Hunter <[email protected]> > --- > > b/drivers/mmc/host/sdhci-acpi.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff -puN drivers/mmc/host/sdhci-acpi.c~x86-intel-families-sdhci-acpi > drivers/mmc/host/sdhci-acpi.c > --- a/drivers/mmc/host/sdhci-acpi.c~x86-intel-families-sdhci-acpi > 2016-06-01 15:45:09.826201501 -0700 > +++ b/drivers/mmc/host/sdhci-acpi.c 2016-06-01 15:45:09.830201683 -0700 > @@ -43,6 +43,7 @@ > > #ifdef CONFIG_X86 > #include <asm/cpu_device_id.h> > +#include <asm/intel-family.h> > #include <asm/iosf_mbi.h> > #endif > > @@ -126,7 +127,7 @@ static const struct sdhci_acpi_chip sdhc > static bool sdhci_acpi_byt(void) > { > static const struct x86_cpu_id byt[] = { > - { X86_VENDOR_INTEL, 6, 0x37 }, > + { X86_VENDOR_INTEL, 6, INTEL_FAM6_MODEL_ATOM_SILVERMONT1 }, > {} > }; > > _ >

