Skip to content

Commit

Permalink
staging: line6: remove unneeded EXPORT_SYMBOL() usage
Browse files Browse the repository at this point in the history
These symbols don't need to be exported as nothing uses them, so don't.

Cc: Markus Grabner <grabner@icg.tugraz.at>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Sep 21, 2010
1 parent 1a0b25c commit 79be725
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions drivers/staging/line6/control.c
Original file line number Diff line number Diff line change
Expand Up @@ -732,8 +732,6 @@ int line6_pod_create_files(int firmware, int type, struct device *dev)
return 0;
}

EXPORT_SYMBOL(line6_pod_create_files);

void line6_pod_remove_files(int firmware, int type, struct device *dev)
{
device_remove_file(dev, &dev_attr_tweak);
Expand Down Expand Up @@ -908,8 +906,6 @@ void line6_pod_remove_files(int firmware, int type, struct device *dev)
device_remove_file(dev, &dev_attr_band_6_gain__bass);
}

EXPORT_SYMBOL(line6_pod_remove_files);

int line6_variax_create_files(int firmware, int type, struct device *dev)
{
int err;
Expand Down Expand Up @@ -955,8 +951,6 @@ int line6_variax_create_files(int firmware, int type, struct device *dev)
return 0;
}

EXPORT_SYMBOL(line6_variax_create_files);

void line6_variax_remove_files(int firmware, int type, struct device *dev)
{
device_remove_file(dev, &dev_attr_body);
Expand Down Expand Up @@ -999,5 +993,3 @@ void line6_variax_remove_files(int firmware, int type, struct device *dev)
device_remove_file(dev, &dev_attr_mix1);
device_remove_file(dev, &dev_attr_pickup_wiring);
}

EXPORT_SYMBOL(line6_variax_remove_files);

0 comments on commit 79be725

Please sign in to comment.