diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-10-03 05:56:53 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-10-17 03:13:24 -0400 |
commit | 61d15963176d44ba898913389b65588e717b7c59 (patch) | |
tree | 1a1dead5f27f136ae26d1b6a023bcf8b9d58de29 /drivers/spi/spi-bcm63xx.c | |
parent | ddffeb8c4d0331609ef2581d84de4d763607bd37 (diff) |
spi/bcm63xx: remove driver version
As Grant Likely reported, this does not make any sense in a mainline kernel
remove that driver version string.
Reported-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/spi/spi-bcm63xx.c')
-rw-r--r-- | drivers/spi/spi-bcm63xx.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/spi/spi-bcm63xx.c b/drivers/spi/spi-bcm63xx.c index a9f4049c6769..af191f560136 100644 --- a/drivers/spi/spi-bcm63xx.c +++ b/drivers/spi/spi-bcm63xx.c | |||
@@ -36,7 +36,6 @@ | |||
36 | #include <bcm63xx_dev_spi.h> | 36 | #include <bcm63xx_dev_spi.h> |
37 | 37 | ||
38 | #define PFX KBUILD_MODNAME | 38 | #define PFX KBUILD_MODNAME |
39 | #define DRV_VER "0.1.2" | ||
40 | 39 | ||
41 | struct bcm63xx_spi { | 40 | struct bcm63xx_spi { |
42 | struct completion done; | 41 | struct completion done; |
@@ -441,8 +440,8 @@ static int __devinit bcm63xx_spi_probe(struct platform_device *pdev) | |||
441 | goto out_clk_disable; | 440 | goto out_clk_disable; |
442 | } | 441 | } |
443 | 442 | ||
444 | dev_info(dev, "at 0x%08x (irq %d, FIFOs size %d) v%s\n", | 443 | dev_info(dev, "at 0x%08x (irq %d, FIFOs size %d)\n", |
445 | r->start, irq, bs->fifo_size, DRV_VER); | 444 | r->start, irq, bs->fifo_size); |
446 | 445 | ||
447 | return 0; | 446 | return 0; |
448 | 447 | ||