aboutsummaryrefslogtreecommitdiff
path: root/src/soc
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/amd/picasso/include/soc/soc_util.h2
-rw-r--r--src/soc/amd/picasso/soc_util.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/picasso/include/soc/soc_util.h b/src/soc/amd/picasso/include/soc/soc_util.h
index 2459207f08..0de0643249 100644
--- a/src/soc/amd/picasso/include/soc/soc_util.h
+++ b/src/soc/amd/picasso/include/soc/soc_util.h
@@ -34,7 +34,7 @@ void print_silicon_type(void);
void print_soc_type(void);
/* function to determine the connectivity feature set */
-bool soc_is_dali(void);
+bool soc_is_reduced_io_sku(void);
/* function to determine the iGPU type */
bool soc_is_raven2(void);
diff --git a/src/soc/amd/picasso/soc_util.c b/src/soc/amd/picasso/soc_util.c
index 2aa9daa2bc..64a97a059e 100644
--- a/src/soc/amd/picasso/soc_util.c
+++ b/src/soc/amd/picasso/soc_util.c
@@ -199,9 +199,9 @@ void print_soc_type(void)
}
}
-bool soc_is_dali(void)
+bool soc_is_reduced_io_sku(void)
{
- return get_soc_type() == SOC_DALI;
+ return get_silicon_type() == SILICON_RV2 || get_soc_type() == SOC_DALI;
}
bool soc_is_raven2(void)