diff options
Diffstat (limited to 'arch/ia64/sn/kernel')
-rw-r--r-- | arch/ia64/sn/kernel/io_acpi_init.c | 4 | ||||
-rw-r--r-- | arch/ia64/sn/kernel/io_common.c | 2 | ||||
-rw-r--r-- | arch/ia64/sn/kernel/irq.c | 6 | ||||
-rw-r--r-- | arch/ia64/sn/kernel/sn2/sn_hwperf.c | 4 | ||||
-rw-r--r-- | arch/ia64/sn/kernel/sn2/sn_proc_fs.c | 2 | ||||
-rw-r--r-- | arch/ia64/sn/kernel/tiocx.c | 2 |
6 files changed, 10 insertions, 10 deletions
diff --git a/arch/ia64/sn/kernel/io_acpi_init.c b/arch/ia64/sn/kernel/io_acpi_init.c index d0223abbbbd4..fd50ff94302b 100644 --- a/arch/ia64/sn/kernel/io_acpi_init.c +++ b/arch/ia64/sn/kernel/io_acpi_init.c | |||
@@ -40,7 +40,7 @@ struct sn_pcidev_match { | |||
40 | /* | 40 | /* |
41 | * Perform the early IO init in PROM. | 41 | * Perform the early IO init in PROM. |
42 | */ | 42 | */ |
43 | static s64 | 43 | static long |
44 | sal_ioif_init(u64 *result) | 44 | sal_ioif_init(u64 *result) |
45 | { | 45 | { |
46 | struct ia64_sal_retval isrv = {0,0,0,0}; | 46 | struct ia64_sal_retval isrv = {0,0,0,0}; |
@@ -492,7 +492,7 @@ void __init | |||
492 | sn_io_acpi_init(void) | 492 | sn_io_acpi_init(void) |
493 | { | 493 | { |
494 | u64 result; | 494 | u64 result; |
495 | s64 status; | 495 | long status; |
496 | 496 | ||
497 | /* SN Altix does not follow the IOSAPIC IRQ routing model */ | 497 | /* SN Altix does not follow the IOSAPIC IRQ routing model */ |
498 | acpi_irq_model = ACPI_IRQ_MODEL_PLATFORM; | 498 | acpi_irq_model = ACPI_IRQ_MODEL_PLATFORM; |
diff --git a/arch/ia64/sn/kernel/io_common.c b/arch/ia64/sn/kernel/io_common.c index 57f280dd9def..76645cf6ac5d 100644 --- a/arch/ia64/sn/kernel/io_common.c +++ b/arch/ia64/sn/kernel/io_common.c | |||
@@ -342,7 +342,7 @@ sn_common_bus_fixup(struct pci_bus *bus, | |||
342 | struct pcibus_bussoft *b = SN_PCIBUS_BUSSOFT(bus); | 342 | struct pcibus_bussoft *b = SN_PCIBUS_BUSSOFT(bus); |
343 | 343 | ||
344 | printk(KERN_WARNING "Device ASIC=%u XID=%u PBUSNUM=%u " | 344 | printk(KERN_WARNING "Device ASIC=%u XID=%u PBUSNUM=%u " |
345 | "L_IO=%lx L_MEM=%lx BASE=%lx\n", | 345 | "L_IO=%llx L_MEM=%llx BASE=%llx\n", |
346 | b->bs_asic_type, b->bs_xid, b->bs_persist_busnum, | 346 | b->bs_asic_type, b->bs_xid, b->bs_persist_busnum, |
347 | b->bs_legacy_io, b->bs_legacy_mem, b->bs_base); | 347 | b->bs_legacy_io, b->bs_legacy_mem, b->bs_base); |
348 | printk(KERN_WARNING "on node %d but only %d nodes online." | 348 | printk(KERN_WARNING "on node %d but only %d nodes online." |
diff --git a/arch/ia64/sn/kernel/irq.c b/arch/ia64/sn/kernel/irq.c index 764f26abac05..40d6eeda1c4b 100644 --- a/arch/ia64/sn/kernel/irq.c +++ b/arch/ia64/sn/kernel/irq.c | |||
@@ -295,13 +295,13 @@ unsigned int sn_local_vector_to_irq(u8 vector) | |||
295 | void sn_irq_init(void) | 295 | void sn_irq_init(void) |
296 | { | 296 | { |
297 | int i; | 297 | int i; |
298 | irq_desc_t *base_desc = irq_desc; | 298 | struct irq_desc *base_desc = irq_desc; |
299 | 299 | ||
300 | ia64_first_device_vector = IA64_SN2_FIRST_DEVICE_VECTOR; | 300 | ia64_first_device_vector = IA64_SN2_FIRST_DEVICE_VECTOR; |
301 | ia64_last_device_vector = IA64_SN2_LAST_DEVICE_VECTOR; | 301 | ia64_last_device_vector = IA64_SN2_LAST_DEVICE_VECTOR; |
302 | 302 | ||
303 | for (i = 0; i < NR_IRQS; i++) { | 303 | for (i = 0; i < NR_IRQS; i++) { |
304 | if (base_desc[i].chip == &no_irq_type) { | 304 | if (base_desc[i].chip == &no_irq_chip) { |
305 | base_desc[i].chip = &irq_type_sn; | 305 | base_desc[i].chip = &irq_type_sn; |
306 | } | 306 | } |
307 | } | 307 | } |
@@ -377,7 +377,7 @@ void sn_irq_fixup(struct pci_dev *pci_dev, struct sn_irq_info *sn_irq_info) | |||
377 | int cpu = nasid_slice_to_cpuid(nasid, slice); | 377 | int cpu = nasid_slice_to_cpuid(nasid, slice); |
378 | #ifdef CONFIG_SMP | 378 | #ifdef CONFIG_SMP |
379 | int cpuphys; | 379 | int cpuphys; |
380 | irq_desc_t *desc; | 380 | struct irq_desc *desc; |
381 | #endif | 381 | #endif |
382 | 382 | ||
383 | pci_dev_get(pci_dev); | 383 | pci_dev_get(pci_dev); |
diff --git a/arch/ia64/sn/kernel/sn2/sn_hwperf.c b/arch/ia64/sn/kernel/sn2/sn_hwperf.c index 9e6491cf72bd..4c7e74790958 100644 --- a/arch/ia64/sn/kernel/sn2/sn_hwperf.c +++ b/arch/ia64/sn/kernel/sn2/sn_hwperf.c | |||
@@ -414,7 +414,7 @@ static int sn_topology_show(struct seq_file *s, void *d) | |||
414 | } | 414 | } |
415 | seq_printf(s, "partition %u %s local " | 415 | seq_printf(s, "partition %u %s local " |
416 | "shubtype %s, " | 416 | "shubtype %s, " |
417 | "nasid_mask 0x%016lx, " | 417 | "nasid_mask 0x%016llx, " |
418 | "nasid_bits %d:%d, " | 418 | "nasid_bits %d:%d, " |
419 | "system_size %d, " | 419 | "system_size %d, " |
420 | "sharing_size %d, " | 420 | "sharing_size %d, " |
@@ -683,7 +683,7 @@ static int sn_hwperf_map_err(int hwperf_err) | |||
683 | * ioctl for "sn_hwperf" misc device | 683 | * ioctl for "sn_hwperf" misc device |
684 | */ | 684 | */ |
685 | static int | 685 | static int |
686 | sn_hwperf_ioctl(struct inode *in, struct file *fp, u32 op, u64 arg) | 686 | sn_hwperf_ioctl(struct inode *in, struct file *fp, u32 op, unsigned long arg) |
687 | { | 687 | { |
688 | struct sn_hwperf_ioctl_args a; | 688 | struct sn_hwperf_ioctl_args a; |
689 | struct cpuinfo_ia64 *cdata; | 689 | struct cpuinfo_ia64 *cdata; |
diff --git a/arch/ia64/sn/kernel/sn2/sn_proc_fs.c b/arch/ia64/sn/kernel/sn2/sn_proc_fs.c index 2526e5c783a4..c76d8dc3aea3 100644 --- a/arch/ia64/sn/kernel/sn2/sn_proc_fs.c +++ b/arch/ia64/sn/kernel/sn2/sn_proc_fs.c | |||
@@ -36,7 +36,7 @@ static int system_serial_number_open(struct inode *inode, struct file *file) | |||
36 | 36 | ||
37 | static int licenseID_show(struct seq_file *s, void *p) | 37 | static int licenseID_show(struct seq_file *s, void *p) |
38 | { | 38 | { |
39 | seq_printf(s, "0x%lx\n", sn_partition_serial_number_val()); | 39 | seq_printf(s, "0x%llx\n", sn_partition_serial_number_val()); |
40 | return 0; | 40 | return 0; |
41 | } | 41 | } |
42 | 42 | ||
diff --git a/arch/ia64/sn/kernel/tiocx.c b/arch/ia64/sn/kernel/tiocx.c index 3f864238566d..c1bd1cfda327 100644 --- a/arch/ia64/sn/kernel/tiocx.c +++ b/arch/ia64/sn/kernel/tiocx.c | |||
@@ -368,7 +368,7 @@ static void tio_corelet_reset(nasid_t nasid, int corelet) | |||
368 | static int is_fpga_tio(int nasid, int *bt) | 368 | static int is_fpga_tio(int nasid, int *bt) |
369 | { | 369 | { |
370 | u16 uninitialized_var(ioboard_type); /* GCC be quiet */ | 370 | u16 uninitialized_var(ioboard_type); /* GCC be quiet */ |
371 | s64 rc; | 371 | long rc; |
372 | 372 | ||
373 | rc = ia64_sn_sysctl_ioboard_get(nasid, &ioboard_type); | 373 | rc = ia64_sn_sysctl_ioboard_get(nasid, &ioboard_type); |
374 | if (rc) { | 374 | if (rc) { |