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

Commit 52c77386 authored by John W. Linville's avatar John W. Linville
Browse files

iwmc3200wifi: fix busted iwm_debugfs_init definition



Looks like we missed removing the return statement in the non-CONFIG_IWM_DEBUG
dummy implementation of iwm_debugfs_init...

Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 1d7d969d
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -116,10 +116,7 @@ struct iwm_debugfs {
void iwm_debugfs_init(struct iwm_priv *iwm);
void iwm_debugfs_exit(struct iwm_priv *iwm);
#else
static inline void iwm_debugfs_init(struct iwm_priv *iwm)
{
	return 0;
}
static inline void iwm_debugfs_init(struct iwm_priv *iwm) {}
static inline void iwm_debugfs_exit(struct iwm_priv *iwm) {}
#endif