Message ID | 1480485460-2663-7-git-send-email-cw00.choi@samsung.com (mailing list archive) |
---|---|
State | Awaiting Upstream |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Hi, Chanwoo Choi <cw00.choi@samsung.com> writes: > This patch uses the resource-managed extcon API for extcon_register_notifier() > and replaces the deprecated extcon API as following: > - extcon_get_cable_state_() -> extcon_get_state() > > Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Hi Felipe, On 2016년 11월 30일 19:36, Felipe Balbi wrote: > > Hi, > > Chanwoo Choi <cw00.choi@samsung.com> writes: >> This patch uses the resource-managed extcon API for extcon_register_notifier() >> and replaces the deprecated extcon API as following: >> - extcon_get_cable_state_() -> extcon_get_state() >> >> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> > > Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com> > Thanks for your review. Each patch has no any dependency among patches. So, If possible, could you pick the patch6/8/9/10/11/12 on your tree?
Hi, Chanwoo Choi <cw00.choi@samsung.com> writes: > Hi Felipe, > > On 2016년 11월 30일 19:36, Felipe Balbi wrote: >> >> Hi, >> >> Chanwoo Choi <cw00.choi@samsung.com> writes: >>> This patch uses the resource-managed extcon API for extcon_register_notifier() >>> and replaces the deprecated extcon API as following: >>> - extcon_get_cable_state_() -> extcon_get_state() >>> >>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> >> >> Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com> >> > > Thanks for your review. > > Each patch has no any dependency among patches. > So, If possible, could you pick the patch6/8/9/10/11/12 on your tree? my tree is closed for v4.10, I can pick it up for v4.11
Hi Felipe, 2016-12-02 18:03 GMT+09:00 Felipe Balbi <balbi@kernel.org>: > > Hi, > > Chanwoo Choi <cw00.choi@samsung.com> writes: >> Hi Felipe, >> >> On 2016년 11월 30일 19:36, Felipe Balbi wrote: >>> >>> Hi, >>> >>> Chanwoo Choi <cw00.choi@samsung.com> writes: >>>> This patch uses the resource-managed extcon API for extcon_register_notifier() >>>> and replaces the deprecated extcon API as following: >>>> - extcon_get_cable_state_() -> extcon_get_state() >>>> >>>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> >>> >>> Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com> >>> >> >> Thanks for your review. >> >> Each patch has no any dependency among patches. >> So, If possible, could you pick the patch6/8/9/10/11/12 on your tree? > > my tree is closed for v4.10, I can pick it up for v4.11 Thanks for your pickup to 4.11.
Hi Felipe, On 2016년 12월 02일 18:03, Felipe Balbi wrote: > > Hi, > > Chanwoo Choi <cw00.choi@samsung.com> writes: >> Hi Felipe, >> >> On 2016년 11월 30일 19:36, Felipe Balbi wrote: >>> >>> Hi, >>> >>> Chanwoo Choi <cw00.choi@samsung.com> writes: >>>> This patch uses the resource-managed extcon API for extcon_register_notifier() >>>> and replaces the deprecated extcon API as following: >>>> - extcon_get_cable_state_() -> extcon_get_state() >>>> >>>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> >>> >>> Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com> >>> >> >> Thanks for your review. >> >> Each patch has no any dependency among patches. >> So, If possible, could you pick the patch6/8/9/10/11/12 on your tree? > > my tree is closed for v4.10, I can pick it up for v4.11 Could you please pick up these patches(patch6/8/9/10/11/12)? These patches were already reviewed by you.
Hi Felipe, On 2016년 12월 30일 11:46, Chanwoo Choi wrote: > Hi Felipe, > > On 2016년 12월 02일 18:03, Felipe Balbi wrote: >> >> Hi, >> >> Chanwoo Choi <cw00.choi@samsung.com> writes: >>> Hi Felipe, >>> >>> On 2016년 11월 30일 19:36, Felipe Balbi wrote: >>>> >>>> Hi, >>>> >>>> Chanwoo Choi <cw00.choi@samsung.com> writes: >>>>> This patch uses the resource-managed extcon API for extcon_register_notifier() >>>>> and replaces the deprecated extcon API as following: >>>>> - extcon_get_cable_state_() -> extcon_get_state() >>>>> >>>>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> >>>> >>>> Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com> >>>> >>> >>> Thanks for your review. >>> >>> Each patch has no any dependency among patches. >>> So, If possible, could you pick the patch6/8/9/10/11/12 on your tree? >> >> my tree is closed for v4.10, I can pick it up for v4.11 > > Could you please pick up these patches(patch6/8/9/10/11/12)? > These patches were already reviewed by you. > I sent v2 patchset. [1] https://www.spinics.net/lists/kernel/msg2410950.html - "[PATCH v2 0/6] usb: Replace the deprecated extcon API"
diff --git a/drivers/usb/dwc3/dwc3-omap.c b/drivers/usb/dwc3/dwc3-omap.c index 29e80cc9b634..2d2e9aa1db08 100644 --- a/drivers/usb/dwc3/dwc3-omap.c +++ b/drivers/usb/dwc3/dwc3-omap.c @@ -425,20 +425,20 @@ static int dwc3_omap_extcon_register(struct dwc3_omap *omap) } omap->vbus_nb.notifier_call = dwc3_omap_vbus_notifier; - ret = extcon_register_notifier(edev, EXTCON_USB, - &omap->vbus_nb); + ret = devm_extcon_register_notifier(omap->dev, edev, + EXTCON_USB, &omap->vbus_nb); if (ret < 0) dev_vdbg(omap->dev, "failed to register notifier for USB\n"); omap->id_nb.notifier_call = dwc3_omap_id_notifier; - ret = extcon_register_notifier(edev, EXTCON_USB_HOST, - &omap->id_nb); + ret = devm_extcon_register_notifier(omap->dev, edev, + EXTCON_USB_HOST, &omap->id_nb); if (ret < 0) dev_vdbg(omap->dev, "failed to register notifier for USB-HOST\n"); - if (extcon_get_cable_state_(edev, EXTCON_USB) == true) + if (extcon_get_state(edev, EXTCON_USB) == true) dwc3_omap_set_mailbox(omap, OMAP_DWC3_VBUS_VALID); - if (extcon_get_cable_state_(edev, EXTCON_USB_HOST) == true) + if (extcon_get_state(edev, EXTCON_USB_HOST) == true) dwc3_omap_set_mailbox(omap, OMAP_DWC3_ID_GROUND); omap->edev = edev; @@ -527,17 +527,13 @@ static int dwc3_omap_probe(struct platform_device *pdev) ret = of_platform_populate(node, NULL, NULL, dev); if (ret) { dev_err(&pdev->dev, "failed to create dwc3 core\n"); - goto err2; + goto err1; } dwc3_omap_enable_irqs(omap); return 0; -err2: - extcon_unregister_notifier(omap->edev, EXTCON_USB, &omap->vbus_nb); - extcon_unregister_notifier(omap->edev, EXTCON_USB_HOST, &omap->id_nb); - err1: pm_runtime_put_sync(dev); pm_runtime_disable(dev); @@ -549,8 +545,6 @@ static int dwc3_omap_remove(struct platform_device *pdev) { struct dwc3_omap *omap = platform_get_drvdata(pdev); - extcon_unregister_notifier(omap->edev, EXTCON_USB, &omap->vbus_nb); - extcon_unregister_notifier(omap->edev, EXTCON_USB_HOST, &omap->id_nb); dwc3_omap_disable_irqs(omap); of_platform_depopulate(omap->dev); pm_runtime_put_sync(&pdev->dev);
This patch uses the resource-managed extcon API for extcon_register_notifier() and replaces the deprecated extcon API as following: - extcon_get_cable_state_() -> extcon_get_state() Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> --- drivers/usb/dwc3/dwc3-omap.c | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-)