ata: sata_dwc_460ex: make debug messages neat
There is a duplication in the debug messages when accessing SCR registers. Remove duplication to make the messages neat. Tested-by: Christian Lamparter <chunkeey@googlemail.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
Родитель
d6ecf0c27d
Коммит
bb08ab6a4c
|
@ -414,16 +414,16 @@ static int sata_dwc_scr_read(struct ata_link *link, unsigned int scr, u32 *val)
|
|||
}
|
||||
|
||||
*val = sata_dwc_readl(link->ap->ioaddr.scr_addr + (scr * 4));
|
||||
dev_dbg(link->ap->dev, "%s: id=%d reg=%d val=val=0x%08x\n",
|
||||
__func__, link->ap->print_id, scr, *val);
|
||||
dev_dbg(link->ap->dev, "%s: id=%d reg=%d val=0x%08x\n", __func__,
|
||||
link->ap->print_id, scr, *val);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int sata_dwc_scr_write(struct ata_link *link, unsigned int scr, u32 val)
|
||||
{
|
||||
dev_dbg(link->ap->dev, "%s: id=%d reg=%d val=val=0x%08x\n",
|
||||
__func__, link->ap->print_id, scr, val);
|
||||
dev_dbg(link->ap->dev, "%s: id=%d reg=%d val=0x%08x\n", __func__,
|
||||
link->ap->print_id, scr, val);
|
||||
if (scr > SCR_NOTIFICATION) {
|
||||
dev_err(link->ap->dev, "%s: Incorrect SCR offset 0x%02x\n",
|
||||
__func__, scr);
|
||||
|
|
Загрузка…
Ссылка в новой задаче