|
From: <bob...@us...> - 2007-07-21 10:27:42
|
Revision: 1190
http://svn.sourceforge.net/hackndev/?rev=1190&view=rev
Author: bobofdoom
Date: 2007-07-21 03:27:37 -0700 (Sat, 21 Jul 2007)
Log Message:
-----------
PalmT650: Fixed crash on psplash and OPIE sleep.
* Removed erroneous __initdata tag from pxafb_mach_info definition.
Modified Paths:
--------------
linux4palm/linux/trunk/arch/arm/mach-pxa/palmt650/palmt650.c
Modified: linux4palm/linux/trunk/arch/arm/mach-pxa/palmt650/palmt650.c
===================================================================
--- linux4palm/linux/trunk/arch/arm/mach-pxa/palmt650/palmt650.c 2007-07-21 07:50:05 UTC (rev 1189)
+++ linux4palm/linux/trunk/arch/arm/mach-pxa/palmt650/palmt650.c 2007-07-21 10:27:37 UTC (rev 1190)
@@ -332,7 +332,7 @@
.sync = FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT,
};
-static struct pxafb_mach_info palmt650_lcd __initdata = {
+static struct pxafb_mach_info palmt650_lcd = {
.lccr0 = LCCR0_ENB | LCCR0_Color | LCCR0_Sngl |
LCCR0_Act | LCCR0_4PixMono | LCCR0_OUC |
LCCR0_LDDALT,
@@ -342,7 +342,7 @@
.modes = &palmt650_lcd_mode,
};
-static struct map_desc palmt650_io_desc[] __initdata = {
+static struct map_desc palmt650_io_desc[] = {
{ /* Devs */
.virtual = PALMT650_ASIC6_VIRT,
.pfn = __phys_to_pfn(PALMT650_ASIC6_PHYS),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|