soundwire: peripheral: remove useless ops pointer
authorPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Tue, 21 Jun 2022 22:56:39 +0000 (17:56 -0500)
committerVinod Koul <vkoul@kernel.org>
Wed, 6 Jul 2022 07:04:21 +0000 (12:34 +0530)
Now that we are using the ops structure directly from the driver,
there are no users left of this ops pointer.

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Rander Wang <rander.wang@intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com>
Link: https://lore.kernel.org/r/20220621225641.221170-3-pierre-louis.bossart@linux.intel.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
include/linux/soundwire/sdw.h

index bf6f0de..39058c8 100644 (file)
@@ -637,7 +637,6 @@ struct sdw_slave_ops {
  * @dev: Linux device
  * @status: Status reported by the Slave
  * @bus: Bus handle
- * @ops: Slave callback ops
  * @prop: Slave properties
  * @debugfs: Slave debugfs
  * @node: node for bus list
@@ -667,7 +666,6 @@ struct sdw_slave {
        struct device dev;
        enum sdw_slave_status status;
        struct sdw_bus *bus;
-       const struct sdw_slave_ops *ops;
        struct sdw_slave_prop prop;
 #ifdef CONFIG_DEBUG_FS
        struct dentry *debugfs;