Skip to content

Commit

Permalink
staging: line6: drop variax guitar sysfs attr
Browse files Browse the repository at this point in the history
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 d46e7c2 commit 52c5505
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 27 deletions.
22 changes: 0 additions & 22 deletions drivers/staging/line6/variax.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,6 @@ void line6_variax_process_message(struct usb_line6_variax *variax)
sizeof(variax_request_bank) - 2) == 0) {
line6_dump_finished(&variax->dumpreq);
variax_startup6(variax);
} else if (memcmp(buf + 1, variax_init_model + 1,
sizeof(variax_init_model) - 1) == 0) {
memcpy(variax->guitar,
buf + sizeof(variax_init_model),
sizeof(variax->guitar));
} else if (memcmp(buf + 1, variax_init_version + 1,
sizeof(variax_init_version) - 1) == 0) {
variax_startup3(variax);
Expand All @@ -275,17 +270,6 @@ void line6_variax_process_message(struct usb_line6_variax *variax)
}
}

/*
"read" request on "guitar" special file.
*/
static ssize_t variax_get_guitar(struct device *dev,
struct device_attribute *attr, char *buf)
{
struct usb_line6_variax *variax =
usb_get_intfdata(to_usb_interface(dev));
return sprintf(buf, "%s\n", variax->guitar);
}

#ifdef CONFIG_LINE6_USB_RAW

static char *variax_alloc_sysex_buffer(struct usb_line6_variax *variax,
Expand Down Expand Up @@ -333,9 +317,6 @@ static ssize_t variax_set_raw2(struct device *dev,

#endif

/* Variax workbench special files: */
static DEVICE_ATTR(guitar, S_IRUGO, variax_get_guitar, line6_nop_write);

#ifdef CONFIG_LINE6_USB_RAW
static DEVICE_ATTR(raw, S_IWUSR, line6_nop_read, line6_set_raw);
static DEVICE_ATTR(raw2, S_IWUSR, line6_nop_read, variax_set_raw2);
Expand Down Expand Up @@ -369,8 +350,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_guitar));
#ifdef CONFIG_LINE6_USB_RAW
CHECK_RETURN(device_create_file(dev, &dev_attr_raw));
CHECK_RETURN(device_create_file(dev, &dev_attr_raw2));
Expand Down Expand Up @@ -469,7 +448,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_guitar);
#ifdef CONFIG_LINE6_USB_RAW
device_remove_file(dev, &dev_attr_raw);
device_remove_file(dev, &dev_attr_raw2);
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 @@ -82,11 +82,6 @@ struct usb_line6_variax {
*/
struct variax_model model_data;

/**
Name of connected guitar.
*/
unsigned char guitar[18];

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

0 comments on commit 52c5505

Please sign in to comment.