Update drivers/input/keyboard/brain-kbd-i2c.c

Clarification of debug messages

Co-authored-by: Takumi Sueda <puhitaku@gmail.com>
This commit is contained in:
SuperTurboZ 2022-11-23 21:31:22 +09:00 committed by GitHub
parent 4aa142165c
commit 292c385c2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ static irqreturn_t bk_i2c_irq_handler(int irq, void *devid)
}
k2 = (raw & 0xff00) >> 8;
k3 = raw & 0xff;
dev_dbg(&kbd->cli->dev, "kbd-raw2[%02X,%02X]\n",k2,k3);
dev_dbg(&kbd->cli->dev, "Raw key event 2 and 3: %02X,%02X\n", k2, k3);
detect_key(kbd, k2);
if(n<3) goto done;