Skip to content

Commit

Permalink
Make the pr_*() family of macros in kernel.h complete
Browse files Browse the repository at this point in the history
Other/Some pr_*() macros are already defined in kernel.h, but pr_err() was
defined multiple times in several other places

Signed-off-by: Emil Medve <[email protected]>
Cc: Jean Delvare <[email protected]>
Cc: Jeff Garzik <[email protected]>
Cc: "Antonino A. Daplas" <[email protected]>
Cc: Tony Lindgren <[email protected]>
Reviewed-by: Satyam Sharma <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Emil Medve authored and Linus Torvalds committed Oct 17, 2007
1 parent 76181c1 commit 1f7c823
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 22 deletions.
10 changes: 4 additions & 6 deletions drivers/i2c/chips/menelaus.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@

#define DRIVER_NAME "menelaus"

#define pr_err(fmt, arg...) printk(KERN_ERR DRIVER_NAME ": ", ## arg);

#define MENELAUS_I2C_ADDRESS 0x72

#define MENELAUS_REV 0x01
Expand Down Expand Up @@ -155,7 +153,7 @@ static int menelaus_write_reg(int reg, u8 value)
int val = i2c_smbus_write_byte_data(the_menelaus->client, reg, value);

if (val < 0) {
pr_err("write error");
pr_err(DRIVER_NAME ": write error");
return val;
}

Expand All @@ -167,7 +165,7 @@ static int menelaus_read_reg(int reg)
int val = i2c_smbus_read_byte_data(the_menelaus->client, reg);

if (val < 0)
pr_err("read error");
pr_err(DRIVER_NAME ": read error");

return val;
}
Expand Down Expand Up @@ -1177,7 +1175,7 @@ static int menelaus_probe(struct i2c_client *client)
/* If a true probe check the device */
rev = menelaus_read_reg(MENELAUS_REV);
if (rev < 0) {
pr_err("device not found");
pr_err(DRIVER_NAME ": device not found");
err = -ENODEV;
goto fail1;
}
Expand Down Expand Up @@ -1258,7 +1256,7 @@ static int __init menelaus_init(void)

res = i2c_add_driver(&menelaus_i2c_driver);
if (res < 0) {
pr_err("driver registration failed\n");
pr_err(DRIVER_NAME ": driver registration failed\n");
return res;
}

Expand Down
3 changes: 0 additions & 3 deletions drivers/net/spider_net.h
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,4 @@ struct spider_net_card {
struct spider_net_descr darray[0];
};

#define pr_err(fmt,arg...) \
printk(KERN_ERR fmt ,##arg)

#endif
6 changes: 2 additions & 4 deletions drivers/video/omap/lcd_h3.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@

#define MODULE_NAME "omapfb-lcd_h3"

#define pr_err(fmt, args...) printk(KERN_ERR MODULE_NAME ": " fmt, ## args)

static int h3_panel_init(struct lcd_panel *panel, struct omapfb_device *fbdev)
{
return 0;
Expand All @@ -48,7 +46,7 @@ static int h3_panel_enable(struct lcd_panel *panel)
if (!r)
r = tps65010_set_gpio_out_value(GPIO2, HIGH);
if (r)
pr_err("Unable to turn on LCD panel\n");
pr_err(MODULE_NAME ": Unable to turn on LCD panel\n");

return r;
}
Expand All @@ -62,7 +60,7 @@ static void h3_panel_disable(struct lcd_panel *panel)
if (!r)
tps65010_set_gpio_out_value(GPIO2, LOW);
if (r)
pr_err("Unable to turn off LCD panel\n");
pr_err(MODULE_NAME ": Unable to turn off LCD panel\n");
}

static unsigned long h3_panel_get_caps(struct lcd_panel *panel)
Expand Down
6 changes: 2 additions & 4 deletions drivers/video/omap/lcd_inn1610.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,18 @@

#define MODULE_NAME "omapfb-lcd_h3"

#define pr_err(fmt, args...) printk(KERN_ERR MODULE_NAME ": " fmt, ## args)

static int innovator1610_panel_init(struct lcd_panel *panel,
struct omapfb_device *fbdev)
{
int r = 0;

if (omap_request_gpio(14)) {
pr_err("can't request GPIO 14\n");
pr_err(MODULE_NAME ": can't request GPIO 14\n");
r = -1;
goto exit;
}
if (omap_request_gpio(15)) {
pr_err("can't request GPIO 15\n");
pr_err(MODULE_NAME ": can't request GPIO 15\n");
omap_free_gpio(14);
r = -1;
goto exit;
Expand Down
22 changes: 17 additions & 5 deletions include/linux/kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -251,20 +251,32 @@ extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
const void *buf, size_t len);
#define hex_asc(x) "0123456789abcdef"[x]

#define pr_emerg(fmt, arg...) \
printk(KERN_EMERG fmt, ##arg)
#define pr_alert(fmt, arg...) \
printk(KERN_ALERT fmt, ##arg)
#define pr_crit(fmt, arg...) \
printk(KERN_CRIT fmt, ##arg)
#define pr_err(fmt, arg...) \
printk(KERN_ERR fmt, ##arg)
#define pr_warning(fmt, arg...) \
printk(KERN_WARNING fmt, ##arg)
#define pr_notice(fmt, arg...) \
printk(KERN_NOTICE fmt, ##arg)
#define pr_info(fmt, arg...) \
printk(KERN_INFO fmt, ##arg)

#ifdef DEBUG
/* If you are writing a driver, please use dev_dbg instead */
#define pr_debug(fmt,arg...) \
printk(KERN_DEBUG fmt,##arg)
#define pr_debug(fmt, arg...) \
printk(KERN_DEBUG fmt, ##arg)
#else
static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char * fmt, ...)
{
return 0;
}
#endif

#define pr_info(fmt,arg...) \
printk(KERN_INFO fmt,##arg)

/*
* Display an IP address in readable format.
*/
Expand Down

0 comments on commit 1f7c823

Please sign in to comment.