replace common qcom sources with samsung ones

This commit is contained in:
SaschaNes
2025-08-12 22:13:00 +02:00
parent ba24dcded9
commit 6f7753de11
5682 changed files with 2450203 additions and 103634 deletions

View File

@@ -15,7 +15,6 @@
#define GEN8_0_0_NUM_PHYSICAL_SLICES 3
#define GEN8_3_0_NUM_PHYSICAL_SLICES 1
#define GEN8_6_0_NUM_PHYSICAL_SLICES 2
/* Forward struct declaration */
struct gen8_snapshot_block_list;
@@ -176,7 +175,7 @@ struct adreno_gen8_core {
/** @cl_no_ft_timeout_ms: Use this timeout for CL NO_FT instead of infinite */
u32 cl_no_ft_timeout_ms;
/** @therm_profile: GMU thermal mitigation profile */
const struct hfi_therm_profile_ctrl *therm_profile;
const struct hfi_therm_profile_ctrl *therm_profile;
};
/**
@@ -632,9 +631,6 @@ static inline u32 gen8_get_num_slices(struct adreno_device *adreno_dev)
{
if (adreno_is_gen8_3_0(adreno_dev))
return GEN8_3_0_NUM_PHYSICAL_SLICES;
else if (adreno_is_gen8_6_0(adreno_dev))
return GEN8_6_0_NUM_PHYSICAL_SLICES;
else
return GEN8_0_0_NUM_PHYSICAL_SLICES;
return GEN8_0_0_NUM_PHYSICAL_SLICES;
}
#endif