diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2005-05-01 19:43:54 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-01 19:43:54 -0700 |
commit | f0f539755b8df3db81715d9c7fb67ba375f0330f (patch) | |
tree | f624f46948fb70f91fec22e4c44d54f1acbcf553 /arch/ppc | |
parent | 7eb8073ecc8251530ebbd9be29cc33e54d37bdc2 (diff) | |
download | op-kernel-dev-f0f539755b8df3db81715d9c7fb67ba375f0330f.zip op-kernel-dev-f0f539755b8df3db81715d9c7fb67ba375f0330f.tar.gz |
[PATCH] ppc32: Fix sleep on old 101 PowerBook
A typo in the machine table incorrectly mark the 101 PowerBook as
needing explicit callback from the video driver to enable sleep mode. I
did not implement that mecanism for chipsest older than r128, so we need
to mark this machine as always beeing able to sleep for now.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ppc')
-rw-r--r-- | arch/ppc/platforms/pmac_feature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/platforms/pmac_feature.c b/arch/ppc/platforms/pmac_feature.c index be41f6f..f0bb3d3 100644 --- a/arch/ppc/platforms/pmac_feature.c +++ b/arch/ppc/platforms/pmac_feature.c @@ -2249,7 +2249,7 @@ static struct pmac_mb_def pmac_mb_defs[] __pmacdata = { }, { "PowerBook1,1", "PowerBook 101 (Lombard)", PMAC_TYPE_101_PBOOK, paddington_features, - PMAC_MB_MAY_SLEEP | PMAC_MB_MOBILE + PMAC_MB_CAN_SLEEP | PMAC_MB_MOBILE }, { "PowerBook2,1", "iBook (first generation)", PMAC_TYPE_ORIG_IBOOK, core99_features, |