|
@@ -71,13 +71,6 @@ static ssize_t dgnc_driver_pollcounter_show(struct device_driver *ddp, char *buf
|
|
|
static DRIVER_ATTR(pollcounter, S_IRUSR, dgnc_driver_pollcounter_show, NULL);
|
|
|
|
|
|
|
|
|
-static ssize_t dgnc_driver_state_show(struct device_driver *ddp, char *buf)
|
|
|
-{
|
|
|
- return snprintf(buf, PAGE_SIZE, "%s\n", dgnc_driver_state_text[dgnc_driver_state]);
|
|
|
-}
|
|
|
-static DRIVER_ATTR(state, S_IRUSR, dgnc_driver_state_show, NULL);
|
|
|
-
|
|
|
-
|
|
|
static ssize_t dgnc_driver_debug_show(struct device_driver *ddp, char *buf)
|
|
|
{
|
|
|
return snprintf(buf, PAGE_SIZE, "0x%x\n", dgnc_debug);
|
|
@@ -129,7 +122,6 @@ void dgnc_create_driver_sysfiles(struct pci_driver *dgnc_driver)
|
|
|
rc |= driver_create_file(driverfs, &driver_attr_rawreadok);
|
|
|
rc |= driver_create_file(driverfs, &driver_attr_pollrate);
|
|
|
rc |= driver_create_file(driverfs, &driver_attr_pollcounter);
|
|
|
- rc |= driver_create_file(driverfs, &driver_attr_state);
|
|
|
if (rc) {
|
|
|
printk(KERN_ERR "DGNC: sysfs driver_create_file failed!\n");
|
|
|
}
|
|
@@ -146,7 +138,6 @@ void dgnc_remove_driver_sysfiles(struct pci_driver *dgnc_driver)
|
|
|
driver_remove_file(driverfs, &driver_attr_rawreadok);
|
|
|
driver_remove_file(driverfs, &driver_attr_pollrate);
|
|
|
driver_remove_file(driverfs, &driver_attr_pollcounter);
|
|
|
- driver_remove_file(driverfs, &driver_attr_state);
|
|
|
}
|
|
|
|
|
|
|