lkml.org 
[lkml]   [2011]   [Apr]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 33/34] usb/lh7a40x_udc: Drop __DATE__ usage
Date
The kernel already prints its build timestamp during boot, no need to
repeat it in random drivers and produce different object files each
time.

Cc: Marc Singer <elf@buici.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-usb@vger.kernel.org
Signed-off-by: Michal Marek <mmarek@suse.cz>
---
drivers/usb/gadget/lh7a40x_udc.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/gadget/lh7a40x_udc.c b/drivers/usb/gadget/lh7a40x_udc.c
index 6b58bd8..1e99e03 100644
--- a/drivers/usb/gadget/lh7a40x_udc.c
+++ b/drivers/usb/gadget/lh7a40x_udc.c
@@ -42,7 +42,6 @@
#endif

#define DRIVER_DESC "LH7A40x USB Device Controller"
-#define DRIVER_VERSION __DATE__

#ifndef _BIT /* FIXME - what happended to _BIT in 2.6.7bk18? */
#define _BIT(x) (1<<(x))
@@ -209,10 +208,10 @@ udc_proc_read(char *page, char **start, off_t off, int count,
/* basic device status */
t = scnprintf(next, size,
DRIVER_DESC "\n"
- "%s version: %s\n"
+ "%s\n"
"Gadget driver: %s\n"
"Host: %s\n\n",
- driver_name, DRIVER_VERSION,
+ driver_name,
dev->driver ? dev->driver->driver.name : "(none)",
is_usb_connected()? "full speed" : "disconnected");
size -= t;
@@ -2134,7 +2133,7 @@ static struct platform_driver udc_driver = {

static int __init udc_init(void)
{
- DEBUG("%s: %s version %s\n", __func__, driver_name, DRIVER_VERSION);
+ DEBUG("%s: %s\n", __func__, driver_name);
return platform_driver_register(&udc_driver);
}

--
1.7.4.1


\
 
 \ /
  Last update: 2011-04-05 17:05    [W:0.038 / U:0.080 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site