1007832103
This patch unifies the namespace of variables, functions defines and structures. It does: - rename libertas_XXX to lbs_XXX - rename LIBERTAS_XXX to lbs_XXX - rename wlan_XXX to lbs_XXX - rename WLAN_XXX to LBS_XXX (but only those that were defined in libertas-local *.h files, e.g. not defines from net/ieee80211.h) While passing, I fixed some checkpatch.pl errors too. Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Acked-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
10 lines
236 B
C
10 lines
236 B
C
#ifndef _LBS_DEBUGFS_H_
|
|
#define _LBS_DEBUGFS_H_
|
|
|
|
void lbs_debugfs_init(void);
|
|
void lbs_debugfs_remove(void);
|
|
|
|
void lbs_debugfs_init_one(lbs_private *priv, struct net_device *dev);
|
|
void lbs_debugfs_remove_one(lbs_private *priv);
|
|
|
|
#endif
|