Skip to content

Commit

Permalink
powerpc: Fix define_machine so machine_is() works from modules
Browse files Browse the repository at this point in the history
machine_is() was always returning 0 when used in a module, because
we weren't exporting the machine definitions.  This was why sound
wasn't working on powermacs when CONFIG_SND_POWERMAC=m.  Original
fix from Ben Herrenschmidt, further fixed by me.

Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Paul Mackerras committed Apr 23, 2006
1 parent 7c8ce71 commit d0e15be
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion include/asm-powerpc/machdep.h
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,11 @@ extern struct machdep_calls *machine_id;

#define __machine_desc __attribute__ ((__section__ (".machine.desc")))

#define define_machine(name) struct machdep_calls mach_##name __machine_desc =
#define define_machine(name) \
extern struct machdep_calls mach_##name; \
EXPORT_SYMBOL(mach_##name); \
struct machdep_calls mach_##name __machine_desc =

#define machine_is(name) \
({ \
extern struct machdep_calls mach_##name \
Expand Down

0 comments on commit d0e15be

Please sign in to comment.