Instead of pronting buffer byte-by-byte let's use native specificator to do the
job.

Signed-off-by: Andy Shevchenko <[email protected]>
---
 drivers/pnp/pnpbios/proc.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/pnp/pnpbios/proc.c b/drivers/pnp/pnpbios/proc.c
index 8dafd65..c212db0 100644
--- a/drivers/pnp/pnpbios/proc.c
+++ b/drivers/pnp/pnpbios/proc.c
@@ -185,10 +185,9 @@ static int pnp_devices_proc_show(struct seq_file *m, void 
*v)
 
                if (pnp_bios_get_dev_node(&nodenum, PNPMODE_DYNAMIC, node))
                        break;
-               seq_printf(m, "%02x\t%08x\t%02x:%02x:%02x\t%04x\n",
+               seq_printf(m, "%02x\t%08x\t%3phC\t%04x\n",
                             node->handle, node->eisa_id,
-                            node->type_code[0], node->type_code[1],
-                            node->type_code[2], node->flags);
+                            node->type_code, node->flags);
                if (nodenum <= thisnodenum) {
                        printk(KERN_ERR
                               "%s Node number 0x%x is out of sequence 
following node 0x%x. Aborting.\n",
-- 
1.8.2.rc0.22.gb3600c3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to