Re: [PATCH] Fix sparsemem on Cell
From: Arnd Bergmann <arnd@arndb.de>
Date: 2006-12-19 09:02:06
Also in:
linux-mm, lkml
From: Arnd Bergmann <arnd@arndb.de>
Date: 2006-12-19 09:02:06
Also in:
linux-mm, lkml
On Tuesday 19 December 2006 00:16, Dave Hansen wrote:
How about an enum, or a pair of #defines?
=20
enum context
{
=A0 =A0 =A0 =A0 EARLY,
=A0 =A0 =A0 =A0 HOTPLUG
};
Sounds good, but since this is in a global header file, it needs
to be in an appropriate name space, like
enum memmap_context {
MEMMAP_EARLY,
MEMMAP_HOTPLUG,
};
Arnd <><