Skip to content

Commit

Permalink
i2c: i801: Drop useless debug message
Browse files Browse the repository at this point in the history
Don't log the host status register value in i801_isr(), it has very
little value and fills up the log when debugging is enabled.

Signed-off-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
  • Loading branch information
Jean Delvare authored and Wolfram Sang committed Nov 12, 2014
1 parent aeb8a3d commit 550d040
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/i2c/busses/i2c-i801.c
Original file line number Diff line number Diff line change
Expand Up @@ -505,9 +505,6 @@ static irqreturn_t i801_isr(int irq, void *dev_id)
return IRQ_NONE;

status = inb_p(SMBHSTSTS(priv));
if (status != 0x42)
dev_dbg(&priv->pci_dev->dev, "irq: status = %02x\n", status);

if (status & SMBHSTSTS_BYTE_DONE)
i801_isr_byte_done(priv);

Expand Down

0 comments on commit 550d040

Please sign in to comment.