diff options
-rw-r--r-- | src/soc/intel/alderlake/dptf.c | 2 | ||||
-rw-r--r-- | src/soc/intel/apollolake/dptf.c | 2 | ||||
-rw-r--r-- | src/soc/intel/cannonlake/dptf.c | 2 | ||||
-rw-r--r-- | src/soc/intel/jasperlake/dptf.c | 2 | ||||
-rw-r--r-- | src/soc/intel/tigerlake/dptf.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/intel/alderlake/dptf.c b/src/soc/intel/alderlake/dptf.c index 0d4560b2c2..00f2e5ca80 100644 --- a/src/soc/intel/alderlake/dptf.c +++ b/src/soc/intel/alderlake/dptf.c @@ -4,7 +4,7 @@ #include <soc/dptf.h> static const struct dptf_platform_info adl_dptf_platform_info = { - .use_eisa_hids = false, + .use_eisa_hids = CONFIG(DPTF_USE_EISA_HID), /* _HID for the toplevel DPTF device, typically \_SB.DPTF */ .dptf_device_hid = DPTF_DPTF_DEVICE, /* _HID for Intel DPTF Generic Device (these require PTYP as well) */ diff --git a/src/soc/intel/apollolake/dptf.c b/src/soc/intel/apollolake/dptf.c index a1ccb165a2..ba6cd59440 100644 --- a/src/soc/intel/apollolake/dptf.c +++ b/src/soc/intel/apollolake/dptf.c @@ -4,7 +4,7 @@ #include <soc/dptf.h> static const struct dptf_platform_info apl_dptf_platform_info = { - .use_eisa_hids = true, + .use_eisa_hids = CONFIG(DPTF_USE_EISA_HID), /* _HID for the toplevel DPTF device, typically \_SB.DPTF */ .dptf_device_hid = DPTF_DPTF_DEVICE, /* _HID for Intel DPTF Generic Device (these require PTYP as well) */ diff --git a/src/soc/intel/cannonlake/dptf.c b/src/soc/intel/cannonlake/dptf.c index 54fac4c857..2ddcc9e2c4 100644 --- a/src/soc/intel/cannonlake/dptf.c +++ b/src/soc/intel/cannonlake/dptf.c @@ -4,7 +4,7 @@ #include <soc/dptf.h> static const struct dptf_platform_info cnl_dptf_platform_info = { - .use_eisa_hids = true, + .use_eisa_hids = CONFIG(DPTF_USE_EISA_HID), /* _HID for the toplevel DPTF device, typically \_SB.DPTF */ .dptf_device_hid = DPTF_DPTF_DEVICE, /* _HID for Intel DPTF Generic Device (these require PTYP as well) */ diff --git a/src/soc/intel/jasperlake/dptf.c b/src/soc/intel/jasperlake/dptf.c index ef5291677a..5656fd7509 100644 --- a/src/soc/intel/jasperlake/dptf.c +++ b/src/soc/intel/jasperlake/dptf.c @@ -4,7 +4,7 @@ #include <soc/dptf.h> static const struct dptf_platform_info jsl_dptf_platform_info = { - .use_eisa_hids = true, + .use_eisa_hids = CONFIG(DPTF_USE_EISA_HID), /* _HID for the toplevel DPTF device, typically \_SB.DPTF */ .dptf_device_hid = DPTF_DPTF_DEVICE, /* _HID for Intel DPTF Generic Device (these require PTYP as well) */ diff --git a/src/soc/intel/tigerlake/dptf.c b/src/soc/intel/tigerlake/dptf.c index 15626d97e2..ad3b7175e8 100644 --- a/src/soc/intel/tigerlake/dptf.c +++ b/src/soc/intel/tigerlake/dptf.c @@ -5,7 +5,7 @@ #include <stdbool.h> static const struct dptf_platform_info tgl_dptf_platform_info = { - .use_eisa_hids = false, + .use_eisa_hids = CONFIG(DPTF_USE_EISA_HID), /* _HID for the toplevel DPTF device, typically \_SB.DPTF */ .dptf_device_hid = DPTF_DPTF_DEVICE, /* _HID for Intel DPTF Generic Device (these require PTYP as well) */ |