diff options
author | Matthew Wilcox <willy@parisc-linux.org> | 2005-11-17 16:33:56 -0500 |
---|---|---|
committer | Kyle McMartin <kyle@parisc-linux.org> | 2005-11-17 16:33:56 -0500 |
commit | 4269b0d371c43bc8f3c9e183847a08258587cf06 (patch) | |
tree | 235601492ed2c0eaabda369bcb72a542235fb710 /arch | |
parent | ba5c4f1bae89eba7b03e58a5448e8b28a006d4df (diff) | |
download | kernel_samsung_smdk4412-4269b0d371c43bc8f3c9e183847a08258587cf06.zip kernel_samsung_smdk4412-4269b0d371c43bc8f3c9e183847a08258587cf06.tar.gz kernel_samsung_smdk4412-4269b0d371c43bc8f3c9e183847a08258587cf06.tar.bz2 |
[PARISC] Improve the error message when we get a clashing mod path
Improve the error message when we get a clashing mod path, and
actually display the IODC data and path for the conflicting device.
Signed-off-by: Matthew Wilcox <willy@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/parisc/kernel/drivers.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/parisc/kernel/drivers.c b/arch/parisc/kernel/drivers.c index 988844a..d016d67 100644 --- a/arch/parisc/kernel/drivers.c +++ b/arch/parisc/kernel/drivers.c @@ -499,8 +499,12 @@ alloc_pa_dev(unsigned long hpa, struct hardware_path *mod_path) dev = create_parisc_device(mod_path); if (dev->id.hw_type != HPHW_FAULTY) { - printk("Two devices have hardware path %s. Please file a bug with HP.\n" - "In the meantime, you could try rearranging your cards.\n", parisc_pathname(dev)); + printk(KERN_ERR "Two devices have hardware path [%s]. " + "IODC data for second device: " + "%02x%02x%02x%02x%02x%02x\n" + "Rearranging GSC cards sometimes helps\n", + parisc_pathname(dev), iodc_data[0], iodc_data[1], + iodc_data[3], iodc_data[4], iodc_data[5], iodc_data[6]); return NULL; } |