Skip to content

Commit

Permalink
staging: line6: drop variax bank sysfs attr
Browse files Browse the repository at this point in the history
The get_string() function is no longer used so drop it too.

Signed-off-by: Stefan Hajnoczi <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
stefanha authored and gregkh committed Nov 27, 2012
1 parent ed5da06 commit a9de8dd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 39 deletions.
34 changes: 0 additions & 34 deletions drivers/staging/line6/variax.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,6 @@ void line6_variax_process_message(struct usb_line6_variax *variax)
}
} else if (memcmp(buf + 1, variax_request_bank + 1,
sizeof(variax_request_bank) - 2) == 0) {
memcpy(variax->bank,
buf + sizeof(variax_request_bank) - 1,
sizeof(variax->bank));
line6_dump_finished(&variax->dumpreq);
variax_startup6(variax);
} else if (memcmp(buf + 1, variax_init_model + 1,
Expand Down Expand Up @@ -310,34 +307,6 @@ static ssize_t variax_set_active(struct device *dev,
return count;
}

static ssize_t get_string(char *buf, const char *data, int length)
{
int i;
memcpy(buf, data, length);

for (i = length; i--;) {
char c = buf[i];

if ((c != 0) && (c != ' '))
break;
}

buf[i + 1] = '\n';
return i + 2;
}

/*
"read" request on "bank" special file.
*/
static ssize_t variax_get_bank(struct device *dev,
struct device_attribute *attr, char *buf)
{
struct usb_line6_variax *variax =
usb_get_intfdata(to_usb_interface(dev));
line6_dump_wait_interruptible(&variax->dumpreq);
return get_string(buf, variax->bank, sizeof(variax->bank));
}

/*
"read" request on "dump" special file.
*/
Expand Down Expand Up @@ -414,7 +383,6 @@ static ssize_t variax_set_raw2(struct device *dev,
#endif

/* Variax workbench special files: */
static DEVICE_ATTR(bank, S_IRUGO, variax_get_bank, line6_nop_write);
static DEVICE_ATTR(dump, S_IRUGO, variax_get_dump, line6_nop_write);
static DEVICE_ATTR(active, S_IWUSR | S_IRUGO, variax_get_active,
variax_set_active);
Expand Down Expand Up @@ -454,7 +422,6 @@ static void variax_destruct(struct usb_interface *interface)
static int variax_create_files2(struct device *dev)
{
int err;
CHECK_RETURN(device_create_file(dev, &dev_attr_bank));
CHECK_RETURN(device_create_file(dev, &dev_attr_dump));
CHECK_RETURN(device_create_file(dev, &dev_attr_active));
CHECK_RETURN(device_create_file(dev, &dev_attr_guitar));
Expand Down Expand Up @@ -556,7 +523,6 @@ void line6_variax_disconnect(struct usb_interface *interface)
if (dev != NULL) {
/* remove sysfs entries: */
line6_variax_remove_files(0, 0, dev);
device_remove_file(dev, &dev_attr_bank);
device_remove_file(dev, &dev_attr_dump);
device_remove_file(dev, &dev_attr_active);
device_remove_file(dev, &dev_attr_guitar);
Expand Down
5 changes: 0 additions & 5 deletions drivers/staging/line6/variax.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@ struct usb_line6_variax {
*/
unsigned char guitar[18];

/**
Name of current model bank.
*/
unsigned char bank[18];

/**
Handler for device initializaton.
*/
Expand Down

0 comments on commit a9de8dd

Please sign in to comment.