Skip to content

Commit

Permalink
drivers/rtc/rtc-puv3.c: use dev_dbg() instead of dev_debug() for typo…
Browse files Browse the repository at this point in the history
… issue

It is only a typo issue, the related commit:

  "1fbc4c4 drivers/rtc/rtc-puv3.c: use dev_dbg() instead of pr_debug()"

The related error (unicore32 with allmodconfig):

    CC [M]  drivers/rtc/rtc-puv3.o
  drivers/rtc/rtc-puv3.c: In function 'puv3_rtc_setpie':
  drivers/rtc/rtc-puv3.c:74: error: implicit declaration of function 'dev_debug'

Signed-off-by: Chen Gang <[email protected]>
Acked-by: Xuetao Guan <[email protected]>
Signed-off-by: Xuetao Guan <[email protected]>
  • Loading branch information
Chen-Gang authored and gxt committed Jun 20, 2014
1 parent 312c6df commit c863810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/rtc/rtc-puv3.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static int puv3_rtc_setpie(struct device *dev, int enabled)
{
unsigned int tmp;

dev_debug(dev, "%s: pie=%d\n", __func__, enabled);
dev_dbg(dev, "%s: pie=%d\n", __func__, enabled);

spin_lock_irq(&puv3_rtc_pie_lock);
tmp = readl(RTC_RTSR) & ~RTC_RTSR_HZE;
Expand Down

0 comments on commit c863810

Please sign in to comment.