From patchwork Tue Apr 5 14:59:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal Marek X-Patchwork-Id: 6350 Return-path: Envelope-to: mchehab@pedra Delivery-date: Tue, 05 Apr 2011 12:02:20 -0300 Received: from mchehab by pedra with local (Exim 4.72) (envelope-from ) id 1Q77ls-0007cR-H5 for mchehab@pedra; Tue, 05 Apr 2011 12:02:20 -0300 Received: from casper.infradead.org [85.118.1.10] by pedra with IMAP (fetchmail-6.3.17) for (single-drop); Tue, 05 Apr 2011 12:02:20 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1Q77lV-0007Bq-Db; Tue, 05 Apr 2011 15:01:57 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754621Ab1DEPBG (ORCPT + 1 other); Tue, 5 Apr 2011 11:01:06 -0400 Received: from cantor.suse.de ([195.135.220.2]:44453 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754125Ab1DEO7g (ORCPT ); Tue, 5 Apr 2011 10:59:36 -0400 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.221.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.suse.de (Postfix) with ESMTP id B01019486B; Tue, 5 Apr 2011 16:59:34 +0200 (CEST) Received: by sepie.suse.cz (Postfix, from userid 10020) id 5A67A76459; Tue, 5 Apr 2011 16:59:34 +0200 (CEST) From: Michal Marek To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Mauro Carvalho Chehab , linux-media@vger.kernel.org Subject: [PATCH 13/34] media/radio-maxiradio: Drop __TIME__ usage Date: Tue, 5 Apr 2011 16:59:00 +0200 Message-Id: <1302015561-21047-14-git-send-email-mmarek@suse.cz> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1302015561-21047-1-git-send-email-mmarek@suse.cz> References: <1302015561-21047-1-git-send-email-mmarek@suse.cz> Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: 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: Mauro Carvalho Chehab Cc: linux-media@vger.kernel.org Signed-off-by: Michal Marek --- drivers/media/radio/radio-maxiradio.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/media/radio/radio-maxiradio.c b/drivers/media/radio/radio-maxiradio.c index 5c2a905..e83e840 100644 --- a/drivers/media/radio/radio-maxiradio.c +++ b/drivers/media/radio/radio-maxiradio.c @@ -412,8 +412,7 @@ static int __devinit maxiradio_init_one(struct pci_dev *pdev, const struct pci_d goto err_out_free_region; } - v4l2_info(v4l2_dev, "version " DRIVER_VERSION - " time " __TIME__ " " __DATE__ "\n"); + v4l2_info(v4l2_dev, "version " DRIVER_VERSION "\n"); v4l2_info(v4l2_dev, "found Guillemot MAXI Radio device (io = 0x%x)\n", dev->io);