diff options
author | Pierre-Louis Bossart <[email protected]> | 2022-06-21 17:56:39 -0500 |
---|---|---|
committer | Vinod Koul <[email protected]> | 2022-07-06 12:34:21 +0530 |
commit | 9a24bb35b0d81edb826f174d7752c2a54bc00abd (patch) | |
tree | 05e1597a113ffdb78af2de6278feffe7ca629cd9 | |
parent | bd29c00edd0a5dac8b6e7332bb470cd50f92e893 (diff) |
soundwire: peripheral: remove useless ops pointer
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 <[email protected]>
Reviewed-by: Rander Wang <[email protected]>
Reviewed-by: Ranjani Sridharan <[email protected]>
Reviewed-by: Bard Liao <[email protected]>
Reviewed-by: Péter Ujfalusi <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Vinod Koul <[email protected]>
-rw-r--r-- | include/linux/soundwire/sdw.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/soundwire/sdw.h b/include/linux/soundwire/sdw.h index bf6f0decb3f6..39058c841469 100644 --- a/include/linux/soundwire/sdw.h +++ b/include/linux/soundwire/sdw.h @@ -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; |