diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2014-09-14 09:34:38 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-09-14 09:35:36 -0400 |
commit | db985cbd67c45f875ef43cb5febfaa8cbd203c27 (patch) | |
tree | 63542d05b1c0f730ec1ad5f915dc4eb3c015e616 /lib/dynamic_debug.c | |
parent | c6f1224573c3b609bd8073b39f496637a16cc06f (diff) | |
parent | 468a903c0e5147e3f93187f0b808a3ef957fd00e (diff) |
Merge tag 'irqchip-core-3.18' of git://git.infradead.org/users/jcooper/linux into irq/core
irqchip core changes for v3.18
- renesas: suspend to RAM, runtime PM, cleanups and DT binding docs
- keystone: add new driver
- hip04: add Hisilicon HiP04 driver (without touching irq-gic.c)
- gic: Use defines instead of magic number, preserve v2 bybass bits
- handle_domain_irq: common low level interrupt entry handler
Diffstat (limited to 'lib/dynamic_debug.c')
-rw-r--r-- | lib/dynamic_debug.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index 7288e38e1757..c9afbe2c445a 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c | |||
@@ -614,13 +614,15 @@ int __dynamic_netdev_dbg(struct _ddebug *descriptor, | |||
614 | char buf[PREFIX_SIZE]; | 614 | char buf[PREFIX_SIZE]; |
615 | 615 | ||
616 | res = dev_printk_emit(7, dev->dev.parent, | 616 | res = dev_printk_emit(7, dev->dev.parent, |
617 | "%s%s %s %s: %pV", | 617 | "%s%s %s %s%s: %pV", |
618 | dynamic_emit_prefix(descriptor, buf), | 618 | dynamic_emit_prefix(descriptor, buf), |
619 | dev_driver_string(dev->dev.parent), | 619 | dev_driver_string(dev->dev.parent), |
620 | dev_name(dev->dev.parent), | 620 | dev_name(dev->dev.parent), |
621 | netdev_name(dev), &vaf); | 621 | netdev_name(dev), netdev_reg_state(dev), |
622 | &vaf); | ||
622 | } else if (dev) { | 623 | } else if (dev) { |
623 | res = printk(KERN_DEBUG "%s: %pV", netdev_name(dev), &vaf); | 624 | res = printk(KERN_DEBUG "%s%s: %pV", netdev_name(dev), |
625 | netdev_reg_state(dev), &vaf); | ||
624 | } else { | 626 | } else { |
625 | res = printk(KERN_DEBUG "(NULL net_device): %pV", &vaf); | 627 | res = printk(KERN_DEBUG "(NULL net_device): %pV", &vaf); |
626 | } | 628 | } |