summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorJames Clark <james.clark@arm.com>2023-04-25 15:35:30 +0100
committerSuzuki K Poulose <suzuki.poulose@arm.com>2023-06-05 15:46:45 +0100
commit704faaf4e33ca0bd9caa1e06c379c32a13d8c3f2 (patch)
tree15faeb19deb3ba90413a0317447b543e697c4864 /include/linux
parent9fa3682869d4e1632f0fb2ed18c4cece101ace57 (diff)
downloadlinux-stable-704faaf4e33ca0bd9caa1e06c379c32a13d8c3f2.tar.gz
linux-stable-704faaf4e33ca0bd9caa1e06c379c32a13d8c3f2.tar.bz2
linux-stable-704faaf4e33ca0bd9caa1e06c379c32a13d8c3f2.zip
coresight: Change name of pdata->conns
conns is actually for output connections. Change the name to make it clearer and so that we can add input connections later. No functional changes. Reviewed-by: Mike Leach <mike.leach@linaro.org> Signed-off-by: James Clark <james.clark@arm.com> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> Link: https://lore.kernel.org/r/20230425143542.2305069-4-james.clark@arm.com
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/coresight.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/coresight.h b/include/linux/coresight.h
index 1f878e8ed8c4..bf621d064ef8 100644
--- a/include/linux/coresight.h
+++ b/include/linux/coresight.h
@@ -104,12 +104,12 @@ union coresight_dev_subtype {
*
* @nr_inport: Number of elements for the input connections.
* @nr_outport: Number of elements for the output connections.
- * @conns: Sparse array of nr_outport connections from this component.
+ * @out_conns: Sparse array of nr_outport connections from this component.
*/
struct coresight_platform_data {
int nr_inport;
int nr_outport;
- struct coresight_connection *conns;
+ struct coresight_connection *out_conns;
};
/**