Re: [PATCH 2/6] extcon: max77843: Add max77843 MUIC driver
From: Jaewon Kim <hidden>
Date: 2015-01-23 07:19:12
Also in:
linux-pm, lkml
From: Jaewon Kim <hidden>
Date: 2015-01-23 07:19:12
Also in:
linux-pm, lkml
Hi Krzysztof, 2015년 01월 23일 15:38에 Krzysztof Kozłowski 이(가) 쓴 글:
2015-01-23 6:02 GMT+01:00 Jaewon Kim [off-list ref]:quoted
This patch adds MAX77843 extcon driver to support for MUIC(Micro USB Interface Controller) device by using EXTCON subsystem to handle various external connectors. Cc: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: Jaewon Kim <redacted> --- drivers/extcon/Kconfig | 10 + drivers/extcon/Makefile | 1 + drivers/extcon/extcon-max77843.c | 871 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 882 insertions(+) create mode 100644 drivers/extcon/extcon-max77843.c(...)quoted
+static int max77843_muic_remove(struct platform_device *pdev) +{ + struct max77843_muic_info *info = platform_get_drvdata(pdev); + + cancel_work_sync(&info->irq_work); +Missing regmap_del_irq_chip(). Best regards, Krzysztof
I miss remap_del_irq_chip() function. thanks. I wil add this function. Thanks Jaewon Kim