pcmcia: ds: convert to use DRIVER_ATTR_RO
We are trying to get rid of DRIVER_ATTR(), and the pcmcia driver's attribute can be trivially changed to use DRIVER_ATTR_RO(). Cc: Russell King <rmk+kernel@armlinux.org.uk> Cc: <linux-pcmcia@lists.infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0457e1ae0f
commit
ad8f20a458
1 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ struct pcmcia_dynid {
|
|||
* and causes the driver to probe for all devices again.
|
||||
*/
|
||||
static ssize_t
|
||||
pcmcia_store_new_id(struct device_driver *driver, const char *buf, size_t count)
|
||||
new_id_store(struct device_driver *driver, const char *buf, size_t count)
|
||||
{
|
||||
struct pcmcia_dynid *dynid;
|
||||
struct pcmcia_driver *pdrv = to_pcmcia_drv(driver);
|
||||
|
@ -133,7 +133,7 @@ pcmcia_store_new_id(struct device_driver *driver, const char *buf, size_t count)
|
|||
return retval;
|
||||
return count;
|
||||
}
|
||||
static DRIVER_ATTR(new_id, S_IWUSR, NULL, pcmcia_store_new_id);
|
||||
static DRIVER_ATTR_WO(new_id);
|
||||
|
||||
static void
|
||||
pcmcia_free_dynids(struct pcmcia_driver *drv)
|
||||
|
|
Loading…
Reference in a new issue