diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/kernel/acpi/boot.c | 7 | ||||
-rw-r--r-- | arch/ppc/boot/simple/Makefile | 4 | ||||
-rw-r--r-- | arch/ppc/syslib/m82xx_pci.c | 3 |
3 files changed, 11 insertions, 3 deletions
diff --git a/arch/i386/kernel/acpi/boot.c b/arch/i386/kernel/acpi/boot.c index 76b1135d401a..447fa9e33ffb 100644 --- a/arch/i386/kernel/acpi/boot.c +++ b/arch/i386/kernel/acpi/boot.c | |||
@@ -638,6 +638,13 @@ static int __init acpi_parse_fadt(unsigned long phys, unsigned long size) | |||
638 | return 0; | 638 | return 0; |
639 | 639 | ||
640 | pmtmr_ioport = fadt->xpm_tmr_blk.address; | 640 | pmtmr_ioport = fadt->xpm_tmr_blk.address; |
641 | /* | ||
642 | * "X" fields are optional extensions to the original V1.0 | ||
643 | * fields, so we must selectively expand V1.0 fields if the | ||
644 | * corresponding X field is zero. | ||
645 | */ | ||
646 | if (!pmtmr_ioport) | ||
647 | pmtmr_ioport = fadt->V1_pm_tmr_blk; | ||
641 | } else { | 648 | } else { |
642 | /* FADT rev. 1 */ | 649 | /* FADT rev. 1 */ |
643 | pmtmr_ioport = fadt->V1_pm_tmr_blk; | 650 | pmtmr_ioport = fadt->V1_pm_tmr_blk; |
diff --git a/arch/ppc/boot/simple/Makefile b/arch/ppc/boot/simple/Makefile index 82df88b01bbe..f3e9c534aa82 100644 --- a/arch/ppc/boot/simple/Makefile +++ b/arch/ppc/boot/simple/Makefile | |||
@@ -262,11 +262,11 @@ $(images)/zImage.initrd-STRIPELF: $(obj)/zvmlinux.initrd | |||
262 | skip=64 bs=1k | 262 | skip=64 bs=1k |
263 | 263 | ||
264 | $(images)/zImage-TREE: $(obj)/zvmlinux $(MKTREE) | 264 | $(images)/zImage-TREE: $(obj)/zvmlinux $(MKTREE) |
265 | $(MKTREE) $(obj)/zvmlinux $(images)/zImage.$(end-y) $(ENTRYPOINT) | 265 | $(MKTREE) $(obj)/zvmlinux $(images)/zImage.$(end-y) $(entrypoint-y) |
266 | 266 | ||
267 | $(images)/zImage.initrd-TREE: $(obj)/zvmlinux.initrd $(MKTREE) | 267 | $(images)/zImage.initrd-TREE: $(obj)/zvmlinux.initrd $(MKTREE) |
268 | $(MKTREE) $(obj)/zvmlinux.initrd $(images)/zImage.initrd.$(end-y) \ | 268 | $(MKTREE) $(obj)/zvmlinux.initrd $(images)/zImage.initrd.$(end-y) \ |
269 | $(ENTRYPOINT) | 269 | $(entrypoint-y) |
270 | 270 | ||
271 | $(images)/zImage-PPLUS: $(obj)/zvmlinux $(MKPREP) $(MKBUGBOOT) | 271 | $(images)/zImage-PPLUS: $(obj)/zvmlinux $(MKPREP) $(MKBUGBOOT) |
272 | $(MKPREP) -pbp $(obj)/zvmlinux $(images)/zImage.$(end-y) | 272 | $(MKPREP) -pbp $(obj)/zvmlinux $(images)/zImage.$(end-y) |
diff --git a/arch/ppc/syslib/m82xx_pci.c b/arch/ppc/syslib/m82xx_pci.c index 1d1c3956c1ae..1941a8c7ca9a 100644 --- a/arch/ppc/syslib/m82xx_pci.c +++ b/arch/ppc/syslib/m82xx_pci.c | |||
@@ -248,7 +248,8 @@ pq2ads_setup_pci(struct pci_controller *hose) | |||
248 | pci_div = ( (sccr & SCCR_PCI_MODCK) ? 2 : 1) * | 248 | pci_div = ( (sccr & SCCR_PCI_MODCK) ? 2 : 1) * |
249 | ( ( (sccr & SCCR_PCIDF_MSK) >> SCCR_PCIDF_SHIFT) + 1); | 249 | ( ( (sccr & SCCR_PCIDF_MSK) >> SCCR_PCIDF_SHIFT) + 1); |
250 | freq = (uint)((2*binfo->bi_cpmfreq)/(pci_div)); | 250 | freq = (uint)((2*binfo->bi_cpmfreq)/(pci_div)); |
251 | time = (int)666666/freq; | 251 | time = (int)66666666/freq; |
252 | |||
252 | /* due to PCI Local Bus spec, some devices needs to wait such a long | 253 | /* due to PCI Local Bus spec, some devices needs to wait such a long |
253 | time after RST deassertion. More specifically, 0.508s for 66MHz & twice more for 33 */ | 254 | time after RST deassertion. More specifically, 0.508s for 66MHz & twice more for 33 */ |
254 | printk("%s: The PCI bus is %d Mhz.\nWaiting %s after deasserting RST...\n",__FILE__,freq, | 255 | printk("%s: The PCI bus is %d Mhz.\nWaiting %s after deasserting RST...\n",__FILE__,freq, |