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

Commit ef9fb88a authored by Prakruthi Deepak Heragu's avatar Prakruthi Deepak Heragu
Browse files

haven: Fix compilation error when DEBUG_FS is disabled



Return proper value when DEBUG_FS is disabled.

Change-Id: I6d46dcac6c6321e1a19468a81906e5f98976d29b
Signed-off-by: default avatarPrakruthi Deepak Heragu <pheragu@codeaurora.org>
parent f5e30025
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -163,7 +163,7 @@ static void __exit hh_dbgfs_unregister(void)
}
#else /* !defined (CONFIG_DEBUG_FS) */
static inline int hh_dbgfs_register(void) { return 0; }
static inline void hh_dbgfs_unregister(void) { return 0; }
static inline void hh_dbgfs_unregister(void) { return; }
#endif

static int __init hh_ctrl_init(void)