mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
fsi: Add fsi_master_rescan()
We'll want non-core fsi code to trigger a rescan, so introduce a non-static fsi_master_rescan() function. Use this for the existing unscan/scan behaviour too. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> Reviewed-by: Joel Stanley <joel@jms.id.au> Reviewed-by: Christopher Bostic <clbostic@linux.vnet.ibm.com> Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
57adbeea64
commit
15362d69c4
@ -762,14 +762,20 @@ static void fsi_master_unscan(struct fsi_master *master)
|
||||
device_for_each_child(&master->dev, NULL, fsi_master_remove_slave);
|
||||
}
|
||||
|
||||
int fsi_master_rescan(struct fsi_master *master)
|
||||
{
|
||||
fsi_master_unscan(master);
|
||||
return fsi_master_scan(master);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(fsi_master_rescan);
|
||||
|
||||
static ssize_t master_rescan_store(struct device *dev,
|
||||
struct device_attribute *attr, const char *buf, size_t count)
|
||||
{
|
||||
struct fsi_master *master = to_fsi_master(dev);
|
||||
int rc;
|
||||
|
||||
fsi_master_unscan(master);
|
||||
rc = fsi_master_scan(master);
|
||||
rc = fsi_master_rescan(master);
|
||||
if (rc < 0)
|
||||
return rc;
|
||||
|
||||
|
@ -40,4 +40,6 @@ struct fsi_master {
|
||||
extern int fsi_master_register(struct fsi_master *master);
|
||||
extern void fsi_master_unregister(struct fsi_master *master);
|
||||
|
||||
extern int fsi_master_rescan(struct fsi_master *master);
|
||||
|
||||
#endif /* DRIVERS_FSI_MASTER_H */
|
||||
|
Loading…
x
Reference in New Issue
Block a user