···33 * Initial setup-routines for HP 9000 based hardware.44 *55 * Copyright (C) 1991, 1992, 1995 Linus Torvalds66- * Modifications for PA-RISC (C) 1999-2008 Helge Deller <deller@gmx.de>66+ * Modifications for PA-RISC (C) 1999-2026 Helge Deller <deller@gmx.de>77 * Modifications copyright 1999 SuSE GmbH (Philipp Rumpf)88 * Modifications copyright 2000 Martin K. Petersen <mkp@mkp.net>99 * Modifications copyright 2000 Philipp Rumpf <prumpf@tux.org>···4141DEFINE_PER_CPU(struct cpuinfo_parisc, cpu_data);42424343/*4444-** PARISC CPU driver - claim "device" and initialize CPU data structures.4444+** PARISC CPU driver - claim "device" and initialize CPU data structures.4545**4646** Consolidate per CPU initialization into (mostly) one module.4747** Monarch CPU will initialize boot_cpu_data which shouldn't···7474 * processor_probe - Determine if processor driver should claim this device.7575 * @dev: The device which has been found.7676 *7777- * Determine if processor driver should claim this chip (return 0) or not 7878- * (return 1). If so, initialize the chip and tell other partners in crime 7777+ * Determine if processor driver should claim this chip (return 0) or not7878+ * (return 1). If so, initialize the chip and tell other partners in crime7979 * they have work to do.8080 */8181static int __init processor_probe(struct parisc_device *dev)···207207 }208208#endif209209210210- /* 210210+ /*211211 * Bring this CPU up now! (ignore bootstrap cpuid == 0)212212 */213213#ifdef CONFIG_SMP···241241 /* get CPU-Model Information... */242242#define p ((unsigned long *)&boot_cpu_data.pdc.model)243243 if (pdc_model_info(&boot_cpu_data.pdc.model) == PDC_OK) {244244- printk(KERN_INFO245245- "model %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",246246- p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7], p[8], p[9]);244244+ pr_info("model 0x%04lx 0x%04lx 0x%04lx 0x%04lx 0x%04lx "245245+ "0x%04lx 0x%04lx 0x%04lx 0x%04lx 0x%04lx\n",246246+ p[0], p[1], p[2], p[3], p[4],247247+ p[5], p[6], p[7], p[8], p[9]);247248248249 add_device_randomness(&boot_cpu_data.pdc.model,249250 sizeof(boot_cpu_data.pdc.model));···252251#undef p253252254253 if (pdc_model_versions(&boot_cpu_data.pdc.versions, 0) == PDC_OK) {255255- printk(KERN_INFO "vers %08lx\n", 256256- boot_cpu_data.pdc.versions);254254+ pr_info("vers 0x%04lx\n", boot_cpu_data.pdc.versions);257255258256 add_device_randomness(&boot_cpu_data.pdc.versions,259257 sizeof(boot_cpu_data.pdc.versions));260258 }261259262260 if (pdc_model_cpuid(&boot_cpu_data.pdc.cpuid) == PDC_OK) {263263- printk(KERN_INFO "CPUID vers %ld rev %ld (0x%08lx)\n",261261+ pr_info("CPUID vers %ld rev %ld (0x%04lx)\n",264262 (boot_cpu_data.pdc.cpuid >> 5) & 127,265263 boot_cpu_data.pdc.cpuid & 31,266264 boot_cpu_data.pdc.cpuid);···437437 boot_cpu_data.pdc.sys_model_name,438438 cpu_name);439439440440- seq_printf(m, "hversion\t: 0x%08x\n"441441- "sversion\t: 0x%08x\n",440440+ seq_printf(m, "hversion\t: 0x%04x\n"441441+ "sversion\t: 0x%04x\n",442442 boot_cpu_data.hversion,443443 boot_cpu_data.sversion );444444