Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18000985 authored by Vaibhav Bedia's avatar Vaibhav Bedia Committed by Linus Torvalds
Browse files

ARM: OMAP: Fix build breakage due to missing include in i2c.c

Merge commit 752451f0 ("Merge branch 'i2c-embedded/for-next' of
git://git.pengutronix.de/git/wsa/linux"

) resulted in a build breakage
for OMAP

  arch/arm/mach-omap2/i2c.c: In function 'omap_pm_set_max_mpu_wakeup_lat_compat':
  arch/arm/mach-omap2/i2c.c:130:2: error: implicit declaration of function 'omap_pm_set_max_mpu_wakeup_lat'
  make[1]: *** [arch/arm/mach-omap2/i2c.o] Error 1

Fix this by including the appropriate header file with the function
prototype.

Reported-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarVaibhav Bedia <vaibhav.bedia@ti.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b7dfde95
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -22,6 +22,7 @@
#include "soc.h"
#include "soc.h"
#include "omap_hwmod.h"
#include "omap_hwmod.h"
#include "omap_device.h"
#include "omap_device.h"
#include "omap-pm.h"


#include "prm.h"
#include "prm.h"
#include "common.h"
#include "common.h"