mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
soundwire: extend parameters of new_peripheral_assigned() callback
The parameters are only the bus and the device number, manager ops may need additional details on the type of peripheral connected, such as whether it is wake-capable or not. Signed-off-by: Pierre-Louis Bossart <[email protected]> Reviewed-by: Rander Wang <[email protected]> Signed-off-by: Bard Liao <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
This commit is contained in:
committed by
Vinod Koul
parent
f903128811
commit
23afc82fb2
@@ -781,7 +781,7 @@ static int sdw_assign_device_num(struct sdw_slave *slave)
|
||||
slave->dev_num = slave->dev_num_sticky;
|
||||
|
||||
if (bus->ops && bus->ops->new_peripheral_assigned)
|
||||
bus->ops->new_peripheral_assigned(bus, dev_num);
|
||||
bus->ops->new_peripheral_assigned(bus, slave, dev_num);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -60,7 +60,9 @@ static int generic_post_bank_switch(struct sdw_bus *bus)
|
||||
return sdw->link_res->hw_ops->post_bank_switch(sdw);
|
||||
}
|
||||
|
||||
static void generic_new_peripheral_assigned(struct sdw_bus *bus, int dev_num)
|
||||
static void generic_new_peripheral_assigned(struct sdw_bus *bus,
|
||||
struct sdw_slave *slave,
|
||||
int dev_num)
|
||||
{
|
||||
struct sdw_cdns *cdns = bus_to_cdns(bus);
|
||||
struct sdw_intel *sdw = cdns_to_intel(cdns);
|
||||
|
||||
@@ -862,7 +862,9 @@ struct sdw_master_ops {
|
||||
int (*pre_bank_switch)(struct sdw_bus *bus);
|
||||
int (*post_bank_switch)(struct sdw_bus *bus);
|
||||
u32 (*read_ping_status)(struct sdw_bus *bus);
|
||||
void (*new_peripheral_assigned)(struct sdw_bus *bus, int dev_num);
|
||||
void (*new_peripheral_assigned)(struct sdw_bus *bus,
|
||||
struct sdw_slave *slave,
|
||||
int dev_num);
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user