diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2007-02-17 13:13:42 -0500 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2007-02-17 13:13:42 -0500 |
commit | 405ae7d381302468ecc803f2148a2ae40a04c999 (patch) | |
tree | 7b1915220ae6595a28755fbbb32ee95d233a3da9 /drivers | |
parent | ca820181fc187af316a18b2700582663662c4012 (diff) |
Replace remaining references to "driverfs" with "sysfs".
Globally, s/driverfs/sysfs/g.
Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/cpu.c | 2 | ||||
-rw-r--r-- | drivers/base/node.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-ali1535.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-ali15x3.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-amd756.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-amd8111.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-i801.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-piix4.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-sis5595.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-sis630.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-sis96x.c | 2 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-via.c | 2 | ||||
-rw-r--r-- | drivers/scsi/osst.c | 12 | ||||
-rw-r--r-- | drivers/scsi/scsi_scan.c | 2 | ||||
-rw-r--r-- | drivers/scsi/st.c | 38 | ||||
-rw-r--r-- | drivers/usb/host/ehci-dbg.c | 2 |
16 files changed, 39 insertions, 39 deletions
diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c index 7fd095efaebd..fe7ef3394144 100644 --- a/drivers/base/cpu.c +++ b/drivers/base/cpu.c | |||
@@ -103,7 +103,7 @@ static SYSDEV_ATTR(crash_notes, 0400, show_crash_notes, NULL); | |||
103 | #endif | 103 | #endif |
104 | 104 | ||
105 | /* | 105 | /* |
106 | * register_cpu - Setup a driverfs device for a CPU. | 106 | * register_cpu - Setup a sysfs device for a CPU. |
107 | * @cpu - cpu->hotpluggable field set to 1 will generate a control file in | 107 | * @cpu - cpu->hotpluggable field set to 1 will generate a control file in |
108 | * sysfs for this CPU. | 108 | * sysfs for this CPU. |
109 | * @num - CPU number to use when creating the device. | 109 | * @num - CPU number to use when creating the device. |
diff --git a/drivers/base/node.c b/drivers/base/node.c index 475e33f76e0d..cae346ef1b20 100644 --- a/drivers/base/node.c +++ b/drivers/base/node.c | |||
@@ -133,7 +133,7 @@ static SYSDEV_ATTR(distance, S_IRUGO, node_read_distance, NULL); | |||
133 | 133 | ||
134 | 134 | ||
135 | /* | 135 | /* |
136 | * register_node - Setup a driverfs device for a node. | 136 | * register_node - Setup a sysfs device for a node. |
137 | * @num - Node number to use when creating the device. | 137 | * @num - Node number to use when creating the device. |
138 | * | 138 | * |
139 | * Initialize and register the node device. | 139 | * Initialize and register the node device. |
diff --git a/drivers/i2c/busses/i2c-ali1535.c b/drivers/i2c/busses/i2c-ali1535.c index 6fd8ad7faa06..1e277ba5a9f3 100644 --- a/drivers/i2c/busses/i2c-ali1535.c +++ b/drivers/i2c/busses/i2c-ali1535.c | |||
@@ -494,7 +494,7 @@ static int __devinit ali1535_probe(struct pci_dev *dev, const struct pci_device_ | |||
494 | return -ENODEV; | 494 | return -ENODEV; |
495 | } | 495 | } |
496 | 496 | ||
497 | /* set up the driverfs linkage to our parent device */ | 497 | /* set up the sysfs linkage to our parent device */ |
498 | ali1535_adapter.dev.parent = &dev->dev; | 498 | ali1535_adapter.dev.parent = &dev->dev; |
499 | 499 | ||
500 | snprintf(ali1535_adapter.name, I2C_NAME_SIZE, | 500 | snprintf(ali1535_adapter.name, I2C_NAME_SIZE, |
diff --git a/drivers/i2c/busses/i2c-ali15x3.c b/drivers/i2c/busses/i2c-ali15x3.c index e4e0df106812..e47fe01bf42a 100644 --- a/drivers/i2c/busses/i2c-ali15x3.c +++ b/drivers/i2c/busses/i2c-ali15x3.c | |||
@@ -489,7 +489,7 @@ static int __devinit ali15x3_probe(struct pci_dev *dev, const struct pci_device_ | |||
489 | return -ENODEV; | 489 | return -ENODEV; |
490 | } | 490 | } |
491 | 491 | ||
492 | /* set up the driverfs linkage to our parent device */ | 492 | /* set up the sysfs linkage to our parent device */ |
493 | ali15x3_adapter.dev.parent = &dev->dev; | 493 | ali15x3_adapter.dev.parent = &dev->dev; |
494 | 494 | ||
495 | snprintf(ali15x3_adapter.name, I2C_NAME_SIZE, | 495 | snprintf(ali15x3_adapter.name, I2C_NAME_SIZE, |
diff --git a/drivers/i2c/busses/i2c-amd756.c b/drivers/i2c/busses/i2c-amd756.c index fa6155a54cc3..7490dc1771ae 100644 --- a/drivers/i2c/busses/i2c-amd756.c +++ b/drivers/i2c/busses/i2c-amd756.c | |||
@@ -374,7 +374,7 @@ static int __devinit amd756_probe(struct pci_dev *pdev, | |||
374 | dev_dbg(&pdev->dev, "SMBREV = 0x%X\n", temp); | 374 | dev_dbg(&pdev->dev, "SMBREV = 0x%X\n", temp); |
375 | dev_dbg(&pdev->dev, "AMD756_smba = 0x%X\n", amd756_ioport); | 375 | dev_dbg(&pdev->dev, "AMD756_smba = 0x%X\n", amd756_ioport); |
376 | 376 | ||
377 | /* set up the driverfs linkage to our parent device */ | 377 | /* set up the sysfs linkage to our parent device */ |
378 | amd756_smbus.dev.parent = &pdev->dev; | 378 | amd756_smbus.dev.parent = &pdev->dev; |
379 | 379 | ||
380 | sprintf(amd756_smbus.name, "SMBus %s adapter at %04x", | 380 | sprintf(amd756_smbus.name, "SMBus %s adapter at %04x", |
diff --git a/drivers/i2c/busses/i2c-amd8111.c b/drivers/i2c/busses/i2c-amd8111.c index 5bba3fb50d71..e15f9e37716a 100644 --- a/drivers/i2c/busses/i2c-amd8111.c +++ b/drivers/i2c/busses/i2c-amd8111.c | |||
@@ -371,7 +371,7 @@ static int __devinit amd8111_probe(struct pci_dev *dev, | |||
371 | smbus->adapter.algo = &smbus_algorithm; | 371 | smbus->adapter.algo = &smbus_algorithm; |
372 | smbus->adapter.algo_data = smbus; | 372 | smbus->adapter.algo_data = smbus; |
373 | 373 | ||
374 | /* set up the driverfs linkage to our parent device */ | 374 | /* set up the sysfs linkage to our parent device */ |
375 | smbus->adapter.dev.parent = &dev->dev; | 375 | smbus->adapter.dev.parent = &dev->dev; |
376 | 376 | ||
377 | pci_write_config_dword(smbus->dev, AMD_PCI_MISC, 0); | 377 | pci_write_config_dword(smbus->dev, AMD_PCI_MISC, 0); |
diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c index 21f2671f7220..6569a36985bd 100644 --- a/drivers/i2c/busses/i2c-i801.c +++ b/drivers/i2c/busses/i2c-i801.c | |||
@@ -522,7 +522,7 @@ static int __devinit i801_probe(struct pci_dev *dev, const struct pci_device_id | |||
522 | else | 522 | else |
523 | dev_dbg(&dev->dev, "SMBus using PCI Interrupt\n"); | 523 | dev_dbg(&dev->dev, "SMBus using PCI Interrupt\n"); |
524 | 524 | ||
525 | /* set up the driverfs linkage to our parent device */ | 525 | /* set up the sysfs linkage to our parent device */ |
526 | i801_adapter.dev.parent = &dev->dev; | 526 | i801_adapter.dev.parent = &dev->dev; |
527 | 527 | ||
528 | snprintf(i801_adapter.name, I2C_NAME_SIZE, | 528 | snprintf(i801_adapter.name, I2C_NAME_SIZE, |
diff --git a/drivers/i2c/busses/i2c-piix4.c b/drivers/i2c/busses/i2c-piix4.c index d888293c1a9c..21b180904085 100644 --- a/drivers/i2c/busses/i2c-piix4.c +++ b/drivers/i2c/busses/i2c-piix4.c | |||
@@ -425,7 +425,7 @@ static int __devinit piix4_probe(struct pci_dev *dev, | |||
425 | if (retval) | 425 | if (retval) |
426 | return retval; | 426 | return retval; |
427 | 427 | ||
428 | /* set up the driverfs linkage to our parent device */ | 428 | /* set up the sysfs linkage to our parent device */ |
429 | piix4_adapter.dev.parent = &dev->dev; | 429 | piix4_adapter.dev.parent = &dev->dev; |
430 | 430 | ||
431 | snprintf(piix4_adapter.name, I2C_NAME_SIZE, | 431 | snprintf(piix4_adapter.name, I2C_NAME_SIZE, |
diff --git a/drivers/i2c/busses/i2c-sis5595.c b/drivers/i2c/busses/i2c-sis5595.c index d333babe4ad3..a6feed449dbe 100644 --- a/drivers/i2c/busses/i2c-sis5595.c +++ b/drivers/i2c/busses/i2c-sis5595.c | |||
@@ -384,7 +384,7 @@ static int __devinit sis5595_probe(struct pci_dev *dev, const struct pci_device_ | |||
384 | return -ENODEV; | 384 | return -ENODEV; |
385 | } | 385 | } |
386 | 386 | ||
387 | /* set up the driverfs linkage to our parent device */ | 387 | /* set up the sysfs linkage to our parent device */ |
388 | sis5595_adapter.dev.parent = &dev->dev; | 388 | sis5595_adapter.dev.parent = &dev->dev; |
389 | 389 | ||
390 | sprintf(sis5595_adapter.name, "SMBus SIS5595 adapter at %04x", | 390 | sprintf(sis5595_adapter.name, "SMBus SIS5595 adapter at %04x", |
diff --git a/drivers/i2c/busses/i2c-sis630.c b/drivers/i2c/busses/i2c-sis630.c index 172bacf932a6..5fd734f99ee9 100644 --- a/drivers/i2c/busses/i2c-sis630.c +++ b/drivers/i2c/busses/i2c-sis630.c | |||
@@ -477,7 +477,7 @@ static int __devinit sis630_probe(struct pci_dev *dev, const struct pci_device_i | |||
477 | return -ENODEV; | 477 | return -ENODEV; |
478 | } | 478 | } |
479 | 479 | ||
480 | /* set up the driverfs linkage to our parent device */ | 480 | /* set up the sysfs linkage to our parent device */ |
481 | sis630_adapter.dev.parent = &dev->dev; | 481 | sis630_adapter.dev.parent = &dev->dev; |
482 | 482 | ||
483 | sprintf(sis630_adapter.name, "SMBus SIS630 adapter at %04x", | 483 | sprintf(sis630_adapter.name, "SMBus SIS630 adapter at %04x", |
diff --git a/drivers/i2c/busses/i2c-sis96x.c b/drivers/i2c/busses/i2c-sis96x.c index 73dae449fb23..4157b0cd604c 100644 --- a/drivers/i2c/busses/i2c-sis96x.c +++ b/drivers/i2c/busses/i2c-sis96x.c | |||
@@ -297,7 +297,7 @@ static int __devinit sis96x_probe(struct pci_dev *dev, | |||
297 | return -EINVAL; | 297 | return -EINVAL; |
298 | } | 298 | } |
299 | 299 | ||
300 | /* set up the driverfs linkage to our parent device */ | 300 | /* set up the sysfs linkage to our parent device */ |
301 | sis96x_adapter.dev.parent = &dev->dev; | 301 | sis96x_adapter.dev.parent = &dev->dev; |
302 | 302 | ||
303 | snprintf(sis96x_adapter.name, I2C_NAME_SIZE, | 303 | snprintf(sis96x_adapter.name, I2C_NAME_SIZE, |
diff --git a/drivers/i2c/busses/i2c-via.c b/drivers/i2c/busses/i2c-via.c index bbcc62151f7c..81520868797b 100644 --- a/drivers/i2c/busses/i2c-via.c +++ b/drivers/i2c/busses/i2c-via.c | |||
@@ -138,7 +138,7 @@ static int __devinit vt586b_probe(struct pci_dev *dev, const struct pci_device_i | |||
138 | outb(inb(I2C_DIR) & ~(I2C_SDA | I2C_SCL), I2C_DIR); | 138 | outb(inb(I2C_DIR) & ~(I2C_SDA | I2C_SCL), I2C_DIR); |
139 | outb(inb(I2C_OUT) & ~(I2C_SDA | I2C_SCL), I2C_OUT); | 139 | outb(inb(I2C_OUT) & ~(I2C_SDA | I2C_SCL), I2C_OUT); |
140 | 140 | ||
141 | /* set up the driverfs linkage to our parent device */ | 141 | /* set up the sysfs linkage to our parent device */ |
142 | vt586b_adapter.dev.parent = &dev->dev; | 142 | vt586b_adapter.dev.parent = &dev->dev; |
143 | 143 | ||
144 | res = i2c_bit_add_bus(&vt586b_adapter); | 144 | res = i2c_bit_add_bus(&vt586b_adapter); |
diff --git a/drivers/scsi/osst.c b/drivers/scsi/osst.c index 9668b73872c7..a967fadb7439 100644 --- a/drivers/scsi/osst.c +++ b/drivers/scsi/osst.c | |||
@@ -5574,14 +5574,14 @@ static ssize_t osst_version_show(struct device_driver *ddd, char *buf) | |||
5574 | 5574 | ||
5575 | static DRIVER_ATTR(version, S_IRUGO, osst_version_show, NULL); | 5575 | static DRIVER_ATTR(version, S_IRUGO, osst_version_show, NULL); |
5576 | 5576 | ||
5577 | static int osst_create_driverfs_files(struct device_driver *driverfs) | 5577 | static int osst_create_sysfs_files(struct device_driver *sysfs) |
5578 | { | 5578 | { |
5579 | return driver_create_file(driverfs, &driver_attr_version); | 5579 | return driver_create_file(sysfs, &driver_attr_version); |
5580 | } | 5580 | } |
5581 | 5581 | ||
5582 | static void osst_remove_driverfs_files(struct device_driver *driverfs) | 5582 | static void osst_remove_sysfs_files(struct device_driver *sysfs) |
5583 | { | 5583 | { |
5584 | driver_remove_file(driverfs, &driver_attr_version); | 5584 | driver_remove_file(sysfs, &driver_attr_version); |
5585 | } | 5585 | } |
5586 | 5586 | ||
5587 | /* | 5587 | /* |
@@ -5953,7 +5953,7 @@ static int __init init_osst(void) | |||
5953 | if (err) | 5953 | if (err) |
5954 | goto err_out_chrdev; | 5954 | goto err_out_chrdev; |
5955 | 5955 | ||
5956 | err = osst_create_driverfs_files(&osst_template.gendrv); | 5956 | err = osst_create_sysfs_files(&osst_template.gendrv); |
5957 | if (err) | 5957 | if (err) |
5958 | goto err_out_scsidrv; | 5958 | goto err_out_scsidrv; |
5959 | 5959 | ||
@@ -5973,7 +5973,7 @@ static void __exit exit_osst (void) | |||
5973 | int i; | 5973 | int i; |
5974 | struct osst_tape * STp; | 5974 | struct osst_tape * STp; |
5975 | 5975 | ||
5976 | osst_remove_driverfs_files(&osst_template.gendrv); | 5976 | osst_remove_sysfs_files(&osst_template.gendrv); |
5977 | scsi_unregister_driver(&osst_template.gendrv); | 5977 | scsi_unregister_driver(&osst_template.gendrv); |
5978 | unregister_chrdev(OSST_MAJOR, "osst"); | 5978 | unregister_chrdev(OSST_MAJOR, "osst"); |
5979 | osst_sysfs_cleanup(); | 5979 | osst_sysfs_cleanup(); |
diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c index a43b9ec3aefd..d6fe756eb371 100644 --- a/drivers/scsi/scsi_scan.c +++ b/drivers/scsi/scsi_scan.c | |||
@@ -54,7 +54,7 @@ | |||
54 | #define SCSI_TIMEOUT (2*HZ) | 54 | #define SCSI_TIMEOUT (2*HZ) |
55 | 55 | ||
56 | /* | 56 | /* |
57 | * Prefix values for the SCSI id's (stored in driverfs name field) | 57 | * Prefix values for the SCSI id's (stored in sysfs name field) |
58 | */ | 58 | */ |
59 | #define SCSI_UID_SER_NUM 'S' | 59 | #define SCSI_UID_SER_NUM 'S' |
60 | #define SCSI_UID_UNKNOWN 'Z' | 60 | #define SCSI_UID_UNKNOWN 'Z' |
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c index 3d2e02381e92..98d8411bbccc 100644 --- a/drivers/scsi/st.c +++ b/drivers/scsi/st.c | |||
@@ -195,8 +195,8 @@ static int sgl_unmap_user_pages(struct scatterlist *, const unsigned int, int); | |||
195 | static int st_probe(struct device *); | 195 | static int st_probe(struct device *); |
196 | static int st_remove(struct device *); | 196 | static int st_remove(struct device *); |
197 | 197 | ||
198 | static int do_create_driverfs_files(void); | 198 | static int do_create_sysfs_files(void); |
199 | static void do_remove_driverfs_files(void); | 199 | static void do_remove_sysfs_files(void); |
200 | static int do_create_class_files(struct scsi_tape *, int, int); | 200 | static int do_create_class_files(struct scsi_tape *, int, int); |
201 | 201 | ||
202 | static struct scsi_driver st_template = { | 202 | static struct scsi_driver st_template = { |
@@ -4193,7 +4193,7 @@ static int __init init_st(void) | |||
4193 | if (err) | 4193 | if (err) |
4194 | goto err_chrdev; | 4194 | goto err_chrdev; |
4195 | 4195 | ||
4196 | err = do_create_driverfs_files(); | 4196 | err = do_create_sysfs_files(); |
4197 | if (err) | 4197 | if (err) |
4198 | goto err_scsidrv; | 4198 | goto err_scsidrv; |
4199 | 4199 | ||
@@ -4211,7 +4211,7 @@ err_class: | |||
4211 | 4211 | ||
4212 | static void __exit exit_st(void) | 4212 | static void __exit exit_st(void) |
4213 | { | 4213 | { |
4214 | do_remove_driverfs_files(); | 4214 | do_remove_sysfs_files(); |
4215 | scsi_unregister_driver(&st_template.gendrv); | 4215 | scsi_unregister_driver(&st_template.gendrv); |
4216 | unregister_chrdev_region(MKDEV(SCSI_TAPE_MAJOR, 0), | 4216 | unregister_chrdev_region(MKDEV(SCSI_TAPE_MAJOR, 0), |
4217 | ST_MAX_TAPE_ENTRIES); | 4217 | ST_MAX_TAPE_ENTRIES); |
@@ -4249,43 +4249,43 @@ static ssize_t st_version_show(struct device_driver *ddd, char *buf) | |||
4249 | } | 4249 | } |
4250 | static DRIVER_ATTR(version, S_IRUGO, st_version_show, NULL); | 4250 | static DRIVER_ATTR(version, S_IRUGO, st_version_show, NULL); |
4251 | 4251 | ||
4252 | static int do_create_driverfs_files(void) | 4252 | static int do_create_sysfs_files(void) |
4253 | { | 4253 | { |
4254 | struct device_driver *driverfs = &st_template.gendrv; | 4254 | struct device_driver *sysfs = &st_template.gendrv; |
4255 | int err; | 4255 | int err; |
4256 | 4256 | ||
4257 | err = driver_create_file(driverfs, &driver_attr_try_direct_io); | 4257 | err = driver_create_file(sysfs, &driver_attr_try_direct_io); |
4258 | if (err) | 4258 | if (err) |
4259 | return err; | 4259 | return err; |
4260 | err = driver_create_file(driverfs, &driver_attr_fixed_buffer_size); | 4260 | err = driver_create_file(sysfs, &driver_attr_fixed_buffer_size); |
4261 | if (err) | 4261 | if (err) |
4262 | goto err_try_direct_io; | 4262 | goto err_try_direct_io; |
4263 | err = driver_create_file(driverfs, &driver_attr_max_sg_segs); | 4263 | err = driver_create_file(sysfs, &driver_attr_max_sg_segs); |
4264 | if (err) | 4264 | if (err) |
4265 | goto err_attr_fixed_buf; | 4265 | goto err_attr_fixed_buf; |
4266 | err = driver_create_file(driverfs, &driver_attr_version); | 4266 | err = driver_create_file(sysfs, &driver_attr_version); |
4267 | if (err) | 4267 | if (err) |
4268 | goto err_attr_max_sg; | 4268 | goto err_attr_max_sg; |
4269 | 4269 | ||
4270 | return 0; | 4270 | return 0; |
4271 | 4271 | ||
4272 | err_attr_max_sg: | 4272 | err_attr_max_sg: |
4273 | driver_remove_file(driverfs, &driver_attr_max_sg_segs); | 4273 | driver_remove_file(sysfs, &driver_attr_max_sg_segs); |
4274 | err_attr_fixed_buf: | 4274 | err_attr_fixed_buf: |
4275 | driver_remove_file(driverfs, &driver_attr_fixed_buffer_size); | 4275 | driver_remove_file(sysfs, &driver_attr_fixed_buffer_size); |
4276 | err_try_direct_io: | 4276 | err_try_direct_io: |
4277 | driver_remove_file(driverfs, &driver_attr_try_direct_io); | 4277 | driver_remove_file(sysfs, &driver_attr_try_direct_io); |
4278 | return err; | 4278 | return err; |
4279 | } | 4279 | } |
4280 | 4280 | ||
4281 | static void do_remove_driverfs_files(void) | 4281 | static void do_remove_sysfs_files(void) |
4282 | { | 4282 | { |
4283 | struct device_driver *driverfs = &st_template.gendrv; | 4283 | struct device_driver *sysfs = &st_template.gendrv; |
4284 | 4284 | ||
4285 | driver_remove_file(driverfs, &driver_attr_version); | 4285 | driver_remove_file(sysfs, &driver_attr_version); |
4286 | driver_remove_file(driverfs, &driver_attr_max_sg_segs); | 4286 | driver_remove_file(sysfs, &driver_attr_max_sg_segs); |
4287 | driver_remove_file(driverfs, &driver_attr_fixed_buffer_size); | 4287 | driver_remove_file(sysfs, &driver_attr_fixed_buffer_size); |
4288 | driver_remove_file(driverfs, &driver_attr_try_direct_io); | 4288 | driver_remove_file(sysfs, &driver_attr_try_direct_io); |
4289 | } | 4289 | } |
4290 | 4290 | ||
4291 | 4291 | ||
diff --git a/drivers/usb/host/ehci-dbg.c b/drivers/usb/host/ehci-dbg.c index 246afea9e83b..43eddaecc3dd 100644 --- a/drivers/usb/host/ehci-dbg.c +++ b/drivers/usb/host/ehci-dbg.c | |||
@@ -322,7 +322,7 @@ static inline void remove_debug_files (struct ehci_hcd *bus) { } | |||
322 | 322 | ||
323 | #else | 323 | #else |
324 | 324 | ||
325 | /* troubleshooting help: expose state in driverfs */ | 325 | /* troubleshooting help: expose state in sysfs */ |
326 | 326 | ||
327 | #define speed_char(info1) ({ char tmp; \ | 327 | #define speed_char(info1) ({ char tmp; \ |
328 | switch (info1 & (3 << 12)) { \ | 328 | switch (info1 & (3 << 12)) { \ |