diff options
| -rw-r--r-- | arch/arm/mach-ks8695/board-micrel.c | 8 | ||||
| -rw-r--r-- | arch/arm/mach-s3c2442/Kconfig | 2 | ||||
| -rw-r--r-- | drivers/video/pxafb.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-ks8695/board-micrel.c b/arch/arm/mach-ks8695/board-micrel.c index 8fc0edb5211e..2feeef81d843 100644 --- a/arch/arm/mach-ks8695/board-micrel.c +++ b/arch/arm/mach-ks8695/board-micrel.c | |||
| @@ -23,24 +23,24 @@ | |||
| 23 | #include "generic.h" | 23 | #include "generic.h" |
| 24 | 24 | ||
| 25 | #ifdef CONFIG_PCI | 25 | #ifdef CONFIG_PCI |
| 26 | static int __init micrel_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 26 | static int micrel_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) |
| 27 | { | 27 | { |
| 28 | return KS8695_IRQ_EXTERN0; | 28 | return KS8695_IRQ_EXTERN0; |
| 29 | } | 29 | } |
| 30 | 30 | ||
| 31 | static struct ks8695_pci_cfg micrel_pci = { | 31 | static struct ks8695_pci_cfg __initdata micrel_pci = { |
| 32 | .mode = KS8695_MODE_MINIPCI, | 32 | .mode = KS8695_MODE_MINIPCI, |
| 33 | .map_irq = micrel_pci_map_irq, | 33 | .map_irq = micrel_pci_map_irq, |
| 34 | }; | 34 | }; |
| 35 | #endif | 35 | #endif |
| 36 | 36 | ||
| 37 | 37 | ||
| 38 | static void micrel_init(void) | 38 | static void __init micrel_init(void) |
| 39 | { | 39 | { |
| 40 | printk(KERN_INFO "Micrel KS8695 Development Board initializing\n"); | 40 | printk(KERN_INFO "Micrel KS8695 Development Board initializing\n"); |
| 41 | 41 | ||
| 42 | #ifdef CONFIG_PCI | 42 | #ifdef CONFIG_PCI |
| 43 | ks8695_init_pci(&micrel_pci); | 43 | // ks8695_init_pci(&micrel_pci); |
| 44 | #endif | 44 | #endif |
| 45 | 45 | ||
| 46 | /* Add devices */ | 46 | /* Add devices */ |
diff --git a/arch/arm/mach-s3c2442/Kconfig b/arch/arm/mach-s3c2442/Kconfig index 88d5fd34fe3b..26d131a77074 100644 --- a/arch/arm/mach-s3c2442/Kconfig +++ b/arch/arm/mach-s3c2442/Kconfig | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | 6 | ||
| 7 | config CPU_S3C2442 | 7 | config CPU_S3C2442 |
| 8 | bool | 8 | bool |
| 9 | depends on ARCH_S3C2420 | 9 | depends on ARCH_S3C2410 |
| 10 | select S3C2410_CLOCK | 10 | select S3C2410_CLOCK |
| 11 | select S3C2410_GPIO | 11 | select S3C2410_GPIO |
| 12 | select S3C2410_PM if PM | 12 | select S3C2410_PM if PM |
diff --git a/drivers/video/pxafb.c b/drivers/video/pxafb.c index 81e571d59b50..a280a52f8efe 100644 --- a/drivers/video/pxafb.c +++ b/drivers/video/pxafb.c | |||
| @@ -66,7 +66,7 @@ static void set_ctrlr_state(struct pxafb_info *fbi, u_int state); | |||
| 66 | 66 | ||
| 67 | #ifdef CONFIG_FB_PXA_PARAMETERS | 67 | #ifdef CONFIG_FB_PXA_PARAMETERS |
| 68 | #define PXAFB_OPTIONS_SIZE 256 | 68 | #define PXAFB_OPTIONS_SIZE 256 |
| 69 | static char g_options[PXAFB_OPTIONS_SIZE] __initdata = ""; | 69 | static char g_options[PXAFB_OPTIONS_SIZE] __devinitdata = ""; |
| 70 | #endif | 70 | #endif |
| 71 | 71 | ||
| 72 | static inline void pxafb_schedule_work(struct pxafb_info *fbi, u_int state) | 72 | static inline void pxafb_schedule_work(struct pxafb_info *fbi, u_int state) |
