diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2009-02-15 23:11:38 +0100 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2009-03-24 20:56:53 +0100 |
commit | c64094684dad4a903099f1ff83b7db9b62782adc (patch) | |
tree | a2f5c78ecf4aeb3662fab0868fe32ed96bb62c57 /drivers/ieee1394/nodemgr.c | |
parent | 421696887b0da241401710e83b0dffcc195bc484 (diff) | |
download | linux-c64094684dad4a903099f1ff83b7db9b62782adc.tar.gz linux-c64094684dad4a903099f1ff83b7db9b62782adc.tar.bz2 linux-c64094684dad4a903099f1ff83b7db9b62782adc.zip |
ieee1394: constify device ID tables
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/nodemgr.c')
-rw-r--r-- | drivers/ieee1394/nodemgr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ieee1394/nodemgr.c b/drivers/ieee1394/nodemgr.c index 53aada5bbe1e..a6d55bebe61a 100644 --- a/drivers/ieee1394/nodemgr.c +++ b/drivers/ieee1394/nodemgr.c @@ -484,7 +484,7 @@ static struct device_attribute *const fw_host_attrs[] = { static ssize_t fw_show_drv_device_ids(struct device_driver *drv, char *buf) { struct hpsb_protocol_driver *driver; - struct ieee1394_device_id *id; + const struct ieee1394_device_id *id; int length = 0; char *scratch = buf; @@ -658,7 +658,7 @@ static int nodemgr_bus_match(struct device * dev, struct device_driver * drv) { struct hpsb_protocol_driver *driver; struct unit_directory *ud; - struct ieee1394_device_id *id; + const struct ieee1394_device_id *id; /* We only match unit directories */ if (dev->platform_data != &nodemgr_ud_platform_data) |