aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2022-06-19 09:42:48 +0100
committerChanwoo Choi <cw00.choi@samsung.com>2022-07-15 11:37:40 +0900
commit2fb67280fd83f0f40ef4ae73aa1b9fbec075c13b (patch)
tree472c98bcb5ad145e4149d6e243c628784c23ce99
parentextcon: fsa9480: Drop no-op remove function (diff)
downloadlinux-dev-2fb67280fd83f0f40ef4ae73aa1b9fbec075c13b.tar.xz
linux-dev-2fb67280fd83f0f40ef4ae73aa1b9fbec075c13b.zip
extcon: Remove extraneous space before a debug message
There is an extreneous space before a dev_dbg message, remove it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
-rw-r--r--drivers/extcon/extcon-palmas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-palmas.c b/drivers/extcon/extcon-palmas.c
index d2c1a8b89c08..32f8b541770b 100644
--- a/drivers/extcon/extcon-palmas.c
+++ b/drivers/extcon/extcon-palmas.c
@@ -107,7 +107,7 @@ static irqreturn_t palmas_id_irq_handler(int irq, void *_palmas_usb)
(id_src & PALMAS_USB_ID_INT_SRC_ID_GND)) {
palmas_usb->linkstat = PALMAS_USB_STATE_ID;
extcon_set_state_sync(edev, EXTCON_USB_HOST, true);
- dev_dbg(palmas_usb->dev, " USB-HOST cable is attached\n");
+ dev_dbg(palmas_usb->dev, "USB-HOST cable is attached\n");
}
return IRQ_HANDLED;