Commit 77bdacaa authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: atomisp: use macros from intel-family.h

Instead of hardcoding the intel family values there, use
the already defined ones from asm/intel-family.h.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 17c3827b
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
#ifndef ATOMISP_PLATFORM_H_ #ifndef ATOMISP_PLATFORM_H_
#define ATOMISP_PLATFORM_H_ #define ATOMISP_PLATFORM_H_
#include <asm/intel-family.h>
#include <linux/i2c.h> #include <linux/i2c.h>
#include <linux/sfi.h> #include <linux/sfi.h>
#include <media/v4l2-subdev.h> #include <media/v4l2-subdev.h>
...@@ -240,9 +242,9 @@ const struct atomisp_camera_caps *atomisp_get_default_camera_caps(void); ...@@ -240,9 +242,9 @@ const struct atomisp_camera_caps *atomisp_get_default_camera_caps(void);
boot_cpu_data.x86 == 6 && \ boot_cpu_data.x86 == 6 && \
boot_cpu_data.x86_model == x) boot_cpu_data.x86_model == x)
#define IS_MFLD __IS_SOC(0x27) #define IS_MFLD __IS_SOC(INTEL_FAM6_ATOM_SALTWELL_MID)
#define IS_BYT __IS_SOC(0x37) #define IS_BYT __IS_SOC(INTEL_FAM6_ATOM_SILVERMONT)
#define IS_CHT __IS_SOC(0x4C) #define IS_CHT __IS_SOC(INTEL_FAM6_ATOM_AIRMONT)
#define IS_MOFD __IS_SOC(0x5A) #define IS_MOFD __IS_SOC(INTEL_FAM6_ATOM_AIRMONT_MID)
#endif /* ATOMISP_PLATFORM_H_ */ #endif /* ATOMISP_PLATFORM_H_ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment