coresight: Cleanup platform description data
authorSuzuki K Poulose <suzuki.poulose@arm.com>
Wed, 11 Jul 2018 19:40:27 +0000 (13:40 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 15 Jul 2018 11:52:58 +0000 (13:52 +0200)
Nobody uses the "clk" field in struct coresight_platform_data.
Remove it.

Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/coresight.h

index e5421b83e4e6a74374911f0ebc089fa2c833de68..69a5c9f8246973c0a3b770a5ec82101a54510e6b 100644 (file)
@@ -87,7 +87,6 @@ struct coresight_dev_subtype {
  * @child_ports:child component port number the current component is
                connected  to.
  * @nr_outport:        number of output ports for this component.
- * @clk:       The clock this component is associated to.
  */
 struct coresight_platform_data {
        int cpu;
@@ -97,7 +96,6 @@ struct coresight_platform_data {
        const char **child_names;
        int *child_ports;
        int nr_outport;
-       struct clk *clk;
 };
 
 /**