lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-aa8c0f1ad7e862147f4efb32bbb71ff66eb38caa@git.kernel.org>
Date:   Wed, 24 Aug 2016 02:31:44 -0700
From:   tip-bot for Baoyou Xie <tipbot@...or.com>
To:     linux-tip-commits@...r.kernel.org
Cc:     mingo@...nel.org, tglx@...utronix.de, linux-kernel@...r.kernel.org,
        arnd@...db.de, hpa@...or.com, baoyou.xie@...aro.org
Subject: [tip:timers/urgent] clocksource/drivers/pxa: Fix include files for
 compilation

Commit-ID:  aa8c0f1ad7e862147f4efb32bbb71ff66eb38caa
Gitweb:     http://git.kernel.org/tip/aa8c0f1ad7e862147f4efb32bbb71ff66eb38caa
Author:     Baoyou Xie <baoyou.xie@...aro.org>
AuthorDate: Tue, 23 Aug 2016 23:19:29 +0800
Committer:  Thomas Gleixner <tglx@...utronix.de>
CommitDate: Wed, 24 Aug 2016 11:16:38 +0200

clocksource/drivers/pxa: Fix include files for compilation

We get 1 warning about global functions without a declaration in the
 clocksource/drivers/pxa driver when building with W=1:

drivers/clocksource/pxa_timer.c:221:13: warning: no previous prototype for 'pxa_timer_nodt_init' [-Wmissing-prototypes]
 void __init pxa_timer_nodt_init(int irq, void __iomem *base,

In fact, this function is declared in pxa.h, so this patch
add missing header dependencies.

Signed-off-by: Baoyou Xie <baoyou.xie@...aro.org>
Reviewed-by: Arnd Bergmann <arnd@...db.de>
Cc: daniel.lezcano@...aro.org
Cc: xie.baoyou@....com.cn
Cc: linux-arm-kernel@...ts.infradead.org
Link: http://lkml.kernel.org/r/1471965569-4104-1-git-send-email-baoyou.xie@linaro.org
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>

---
 drivers/clocksource/pxa_timer.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/clocksource/pxa_timer.c b/drivers/clocksource/pxa_timer.c
index 937e10b..3e1cb51 100644
--- a/drivers/clocksource/pxa_timer.c
+++ b/drivers/clocksource/pxa_timer.c
@@ -21,6 +21,8 @@
 #include <linux/of_irq.h>
 #include <linux/sched_clock.h>
 
+#include <clocksource/pxa.h>
+
 #include <asm/div64.h>
 
 #define OSMR0		0x00	/* OS Timer 0 Match Register */

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ