mirror of https://gitee.com/openkylin/linux.git
i2c: i801: Drop needless bit-wise OR
The interrupt handling code makes it look like several status values may be merged together before being processed, while this will never happen. Change from bit-wise OR to simple assignment to make it more obvious and avoid misunderstanding. Signed-off-by: Jean Delvare <jdelvare@suse.de> Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com> Reviewed-by: Daniel Kurtz <djkurtz@chromium.org> Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
0f614d834b
commit
a90bc5d9a7
|
@ -547,7 +547,7 @@ static irqreturn_t i801_isr(int irq, void *dev_id)
|
|||
status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS;
|
||||
if (status) {
|
||||
outb_p(status, SMBHSTSTS(priv));
|
||||
priv->status |= status;
|
||||
priv->status = status;
|
||||
wake_up(&priv->waitq);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue