The following commit has been merged into the timers/core branch of tip: Commit-ID: 4855f2bd91b6e3461af7d795bfe9a40420122131 Gitweb: https://git.kernel.org/tip/4855f2bd91b6e3461af7d795bfe9a40420122131 Author: Christophe JAILLET <[email protected]> AuthorDate: Thu, 09 Apr 2020 12:12:26 +02:00 Committer: Daniel Lezcano <[email protected]> CommitterDate: Thu, 09 Apr 2020 12:13:20 +02:00
clocksource: davinci: axe a pointless __GFP_NOFAIL There is no need to specify __GFP_NOFAIL when allocating memory here, so axe it. Signed-off-by: Christophe JAILLET <[email protected]> Signed-off-by: Daniel Lezcano <[email protected]> Link: https://lore.kernel.org/r/[email protected] --- drivers/clocksource/timer-davinci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clocksource/timer-davinci.c b/drivers/clocksource/timer-davinci.c index aae9383..bb4eee3 100644 --- a/drivers/clocksource/timer-davinci.c +++ b/drivers/clocksource/timer-davinci.c @@ -270,7 +270,7 @@ int __init davinci_timer_register(struct clk *clk, davinci_timer_init(base); tick_rate = clk_get_rate(clk); - clockevent = kzalloc(sizeof(*clockevent), GFP_KERNEL | __GFP_NOFAIL); + clockevent = kzalloc(sizeof(*clockevent), GFP_KERNEL); if (!clockevent) return -ENOMEM;

