From: Josh Triplett Date: Mon, 23 Dec 2013 21:55:19 +0000 (-0800) Subject: staging: rts5139: Drop print of build time X-Git-Tag: v5.15~18493^2~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0fcaf3bc1a12d4b21d4b215f831a7bc49baf6f04;p=platform%2Fkernel%2Flinux-starfive.git staging: rts5139: Drop print of build time The kernel already has this information, and individual drivers shouldn't duplicate that. This also eliminates the use of __TIME__, which makes the build non-deterministic. (And, without __DATE__, __TIME__ provided little useful information to begin with.) Signed-off-by: Josh Triplett Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rts5139/rts51x_scsi.c b/drivers/staging/rts5139/rts51x_scsi.c index a474eed..3a99025 100644 --- a/drivers/staging/rts5139/rts51x_scsi.c +++ b/drivers/staging/rts5139/rts51x_scsi.c @@ -1985,7 +1985,6 @@ static int show_info(struct seq_file *m, struct Scsi_Host *host) SPRINTF(" Vendor: Realtek Corp.\n"); SPRINTF(" Product: RTS51xx USB Card Reader\n"); SPRINTF(" Version: %s\n", DRIVER_VERSION); - SPRINTF(" Build: %s\n", __TIME__); return 0; }