Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 350972
b: refs/heads/master
c: 73ce873
h: refs/heads/master
v: v3
  • Loading branch information
Jiang Liu authored and Rafael J. Wysocki committed Feb 13, 2013
1 parent b486b0a commit ef939d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 02df7349d29f99ede4c97504ab67e3082c95c15e
refs/heads/master: 73ce873a898ff385cd18e9068d38a35ff48e7585
7 changes: 3 additions & 4 deletions trunk/drivers/acpi/pci_slot.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,12 @@ module_param(debug, bool, 0644);
ACPI_MODULE_NAME("pci_slot");

#define MY_NAME "pci_slot"
#define err(format, arg...) printk(KERN_ERR "%s: " format , MY_NAME , ## arg)
#define info(format, arg...) printk(KERN_INFO "%s: " format , MY_NAME , ## arg)
#define err(format, arg...) pr_err("%s: " format , MY_NAME , ## arg)
#define info(format, arg...) pr_info("%s: " format , MY_NAME , ## arg)
#define dbg(format, arg...) \
do { \
if (debug) \
printk(KERN_DEBUG "%s: " format, \
MY_NAME , ## arg); \
pr_debug("%s: " format, MY_NAME , ## arg); \
} while (0)

#define SLOT_NAME_SIZE 21 /* Inspired by #define in acpiphp.h */
Expand Down

0 comments on commit ef939d9

Please sign in to comment.