diff options
author | Tilman Schmidt <tilman@imap.cc> | 2006-02-24 05:05:45 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-20 16:42:59 -0500 |
commit | 4f2928d0a439553f0288d9483faf417430629635 (patch) | |
tree | 96efd4b28d84fd409add525a7c2f834b22dd0d23 /include/linux/device.h | |
parent | 30560ba6eda308c13a361d08eb5d4eaab94ab37e (diff) |
[PATCH] Driver core: add macros notice(), dev_notice()
Both usb.h and device.h have collections of convenience macros for
printk() with the KERN_ERR, KERN_WARNING, and KERN_NOTICE severity
levels. This patch adds macros for the KERN_NOTICE level which was
so far uncatered for.
These macros already exist privately in drivers/isdn/gigaset/gigaset.h
(currently in the process of being submitted for the kernel tree)
but they really belong with their brothers and sisters in
include/linux/{device,usb}.h.
Signed-off-by: Tilman Schmidt <tilman@imap.cc>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/device.h')
-rw-r--r-- | include/linux/device.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index 58df18d9cd3e..5b595fdfb672 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
@@ -424,6 +424,8 @@ extern void firmware_unregister(struct subsystem *); | |||
424 | dev_printk(KERN_INFO , dev , format , ## arg) | 424 | dev_printk(KERN_INFO , dev , format , ## arg) |
425 | #define dev_warn(dev, format, arg...) \ | 425 | #define dev_warn(dev, format, arg...) \ |
426 | dev_printk(KERN_WARNING , dev , format , ## arg) | 426 | dev_printk(KERN_WARNING , dev , format , ## arg) |
427 | #define dev_notice(dev, format, arg...) \ | ||
428 | dev_printk(KERN_NOTICE , dev , format , ## arg) | ||
427 | 429 | ||
428 | /* Create alias, so I can be autoloaded. */ | 430 | /* Create alias, so I can be autoloaded. */ |
429 | #define MODULE_ALIAS_CHARDEV(major,minor) \ | 431 | #define MODULE_ALIAS_CHARDEV(major,minor) \ |