diff options
author | Josh Triplett <[email protected]> | 2013-12-23 13:54:56 -0800 |
---|---|---|
committer | Brian Norris <[email protected]> | 2014-01-09 08:52:48 -0800 |
commit | 88c305912db5d50e2b2568e22119b9ee3b56ad88 (patch) | |
tree | 5aafd82af66d7107617f780a6319422b0fde2fe6 | |
parent | f0501e81fbaa51cfc8c28c60bc3fc7965fde94f4 (diff) |
mtd: denali: Drop print of build date/time
The kernel already has this information, and individual drivers
shouldn't duplicate that. This also eliminates the use of __DATE__ and
__TIME__, which make the build non-deterministic.
Signed-off-by: Josh Triplett <[email protected]>
Reviewed-by: Jingoo Han <[email protected]>
Signed-off-by: Brian Norris <[email protected]>
-rw-r--r-- | drivers/mtd/nand/denali_pci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mtd/nand/denali_pci.c b/drivers/mtd/nand/denali_pci.c index 622dfb7eba66..6e2f387b823f 100644 --- a/drivers/mtd/nand/denali_pci.c +++ b/drivers/mtd/nand/denali_pci.c @@ -131,7 +131,6 @@ static struct pci_driver denali_pci_driver = { static int denali_init_pci(void) { - pr_info("Spectra MTD driver built on %s @ %s\n", __DATE__, __TIME__); return pci_register_driver(&denali_pci_driver); } module_init(denali_init_pci); |