diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-07-03 16:38:51 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-07-03 16:38:51 +0200 |
commit | b0950ce1e217b92406ffc183a6d02306d4e09053 (patch) | |
tree | 7f64f835c8787b7933a4b7cbe0fd65371ca8d51a | |
parent | e1bd69ff09807d5bf80f17f3279240cb223145a6 (diff) | |
download | stable-queue-b0950ce1e217b92406ffc183a6d02306d4e09053.tar.gz |
-rw-r--r-- | queue-6.1/coresight-only-check-bottom-two-claim-bits.patch | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/queue-6.1/coresight-only-check-bottom-two-claim-bits.patch b/queue-6.1/coresight-only-check-bottom-two-claim-bits.patch index 597c332b553..09edcd89ea2 100644 --- a/queue-6.1/coresight-only-check-bottom-two-claim-bits.patch +++ b/queue-6.1/coresight-only-check-bottom-two-claim-bits.patch @@ -20,15 +20,13 @@ Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> Link: https://lore.kernel.org/r/20250325-james-coresight-claim-tags-v4-2-dfbd3822b2e5@linaro.org Signed-off-by: Sasha Levin <sashal@kernel.org> --- - drivers/hwtracing/coresight/coresight-core.c | 3 ++- - drivers/hwtracing/coresight/coresight-priv.h | 1 + - 2 files changed, 3 insertions(+), 1 deletion(-) + drivers/hwtracing/coresight/coresight-core.c | 3 ++- + drivers/hwtracing/coresight/coresight-priv.h | 2 ++ + 2 files changed, 4 insertions(+), 1 deletion(-) -diff --git a/drivers/hwtracing/coresight/coresight-core.c b/drivers/hwtracing/coresight/coresight-core.c -index 4477b1ab73577..6d836f10b3de6 100644 --- a/drivers/hwtracing/coresight/coresight-core.c +++ b/drivers/hwtracing/coresight/coresight-core.c -@@ -189,7 +189,8 @@ static int coresight_find_link_outport(struct coresight_device *csdev, +@@ -189,7 +189,8 @@ static int coresight_find_link_outport(s static inline u32 coresight_read_claim_tags(struct coresight_device *csdev) { @@ -38,11 +36,17 @@ index 4477b1ab73577..6d836f10b3de6 100644 } static inline bool coresight_is_claimed_self_hosted(struct coresight_device *csdev) -diff --git a/drivers/hwtracing/coresight/coresight-priv.h b/drivers/hwtracing/coresight/coresight-priv.h -index 595ce58620567..3c78df0b60893 100644 --- a/drivers/hwtracing/coresight/coresight-priv.h +++ b/drivers/hwtracing/coresight/coresight-priv.h -@@ -32,6 +32,7 @@ +@@ -8,6 +8,7 @@ + + #include <linux/amba/bus.h> + #include <linux/bitops.h> ++#include <linux/bitfield.h> + #include <linux/io.h> + #include <linux/coresight.h> + #include <linux/pm_runtime.h> +@@ -32,6 +33,7 @@ * Coresight device CLAIM protocol. * See PSCI - ARM DEN 0022D, Section: 6.8.1 Debug and Trace save and restore. */ @@ -50,6 +54,3 @@ index 595ce58620567..3c78df0b60893 100644 #define CORESIGHT_CLAIM_SELF_HOSTED BIT(1) #define TIMEOUT_US 100 --- -2.39.5 - |