diff options
-rw-r--r-- | drivers/misc/ti_dac7512.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/misc/ti_dac7512.c b/drivers/misc/ti_dac7512.c index db47333184b7..46dfbf36bbea 100644 --- a/drivers/misc/ti_dac7512.c +++ b/drivers/misc/ti_dac7512.c @@ -23,8 +23,6 @@ #include <linux/init.h> #include <linux/spi/spi.h> -#define DAC7512_DRV_NAME "dac7512" - static ssize_t dac7512_store_val(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) @@ -76,7 +74,7 @@ static int dac7512_remove(struct spi_device *spi) static struct spi_driver dac7512_driver = { .driver = { - .name = DAC7512_DRV_NAME, + .name = "dac7512", .owner = THIS_MODULE, }, .probe = dac7512_probe, |