Revision 488288d9f25fbab903bd264bc74f2fad3a7f7a09 authored by Josef 'Jeff' Sipek on 19 January 2008, 21:04:42 UTC, committed by Linus Torvalds on 20 January 2008, 05:29:39 UTC
The i386 and x86_64 arch directories contain nothing but a generated symlink
to arch/x86/boot/bzImage when a tree a built.

Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Peter Anvin <hpa@zytor.com>
Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent aa8f237
Raw File
debugfs.h
#ifndef __MAC80211_DEBUGFS_H
#define __MAC80211_DEBUGFS_H

#ifdef CONFIG_MAC80211_DEBUGFS
extern void debugfs_hw_add(struct ieee80211_local *local);
extern void debugfs_hw_del(struct ieee80211_local *local);
extern int mac80211_open_file_generic(struct inode *inode, struct file *file);
#else
static inline void debugfs_hw_add(struct ieee80211_local *local)
{
	return;
}
static inline void debugfs_hw_del(struct ieee80211_local *local) {}
#endif

#endif /* __MAC80211_DEBUGFS_H */
back to top