From 21312b8e2fc715ceb13e216bd83e63ec646dce15 Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Wed, 7 Sep 2016 14:56:10 +0900 Subject: [PATCH] Input: sprd_eic_keys: remove event log This patch removes event log. Change-Id: Iaeeaab3c71d3513edd3af51df5dbb870099fecd2 Signed-off-by: Seung-Woo Kim Signed-off-by: Andi Shyti --- drivers/input/keyboard/sprd_eic_keys.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/input/keyboard/sprd_eic_keys.c b/drivers/input/keyboard/sprd_eic_keys.c index 56f33ff..077d254 100644 --- a/drivers/input/keyboard/sprd_eic_keys.c +++ b/drivers/input/keyboard/sprd_eic_keys.c @@ -101,7 +101,6 @@ static irqreturn_t sprd_eic_irq_handle(int irq, void *dev_id) #endif input_report_key(this_pdata->input_dev, button->code, button_state_current); input_sync(this_pdata->input_dev); - PRINT_INFO("[P] %s\n", button->desc); if(1 == button->active_low) irq_set_irq_type(button->irq, IRQF_TRIGGER_HIGH); @@ -117,7 +116,6 @@ static irqreturn_t sprd_eic_irq_handle(int irq, void *dev_id) #endif input_report_key(this_pdata->input_dev, button->code, button_state_current); input_sync(this_pdata->input_dev); - PRINT_INFO("[R] %s\n", button->desc); if(1 == button->active_low) irq_set_irq_type(button->irq, IRQF_TRIGGER_LOW); -- 2.7.4