ARM: imx: add missing include

imx25_pm_init() is declared in common.h but this is not included
before its definition:

arch/arm/mach-imx/pm-imx25.c:31:13: error: no previous prototype for 'imx25_pm_init'

Link: https://lore.kernel.org/r/20230516153109.514251-5-arnd@kernel.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
Arnd Bergmann 2023-05-16 17:31:00 +02:00
parent 774f60dd6a
commit 5692520a04
No known key found for this signature in database
GPG Key ID: 60AB47FFC9095227
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@
#include <linux/kernel.h>
#include <linux/suspend.h>
#include <linux/io.h>
#include "common.h"
static int imx25_suspend_enter(suspend_state_t state)
{