Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932283AbaJGXmd (ORCPT ); Tue, 7 Oct 2014 19:42:33 -0400 Received: from mail-pd0-f180.google.com ([209.85.192.180]:65359 "EHLO mail-pd0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755526AbaJGXma (ORCPT ); Tue, 7 Oct 2014 19:42:30 -0400 Date: Tue, 7 Oct 2014 16:42:24 -0700 From: Dmitry Torokhov To: Bjorn Andersson Cc: Kiran Padwal , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Grant Likely , "devicetree@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "linux-input@vger.kernel.org" , "linux-arm-msm@vger.kernel.org" , "Cavin, Courtney" Subject: Re: [PATCH 1/2] input: Add Qualcomm PM8941 power key driver Message-ID: <20141007234224.GL16469@dtor-ws> References: <1412644321-27683-1-git-send-email-bjorn.andersson@sonymobile.com> <1412644321-27683-2-git-send-email-bjorn.andersson@sonymobile.com> <5433B843.5060200@smartplayin.com> <20141007233045.GD31125@sonymobile.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20141007233045.GD31125@sonymobile.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Oct 07, 2014 at 04:30:46PM -0700, Bjorn Andersson wrote: > On Tue 07 Oct 02:54 PDT 2014, Kiran Padwal wrote: > > > On Tuesday 07 October 2014 06:42 AM, Bjorn Andersson wrote: > > > From: Courtney Cavin > > > > > > Signed-off-by: Courtney Cavin > > > Signed-off-by: Bjorn Andersson > > > --- > > > drivers/input/misc/Kconfig | 12 +++ > > > drivers/input/misc/Makefile | 1 + > > > drivers/input/misc/pm8941-pwrkey.c | 196 ++++++++++++++++++++++++++++++++++++ > > > > > > > > > + > > > + platform_set_drvdata(pdev, pwrkey); > > > + device_init_wakeup(&pdev->dev, 1); > > > + > > > + return 0; > > > +} > > > + > > > +static int pm8941_pwrkey_remove(struct platform_device *pdev) > > > +{ > > > + device_init_wakeup(&pdev->dev, 0); > > > > Shouldn't we unregister input device? > > > > It's allocated with devm_input_allocate_device() so I assumed that it goes away > upon the device being removed. Looking at input_register_device() seems to > confirm that. Yes, devices allocated with devm_input_allocate_device() will be unregistered and freed automatically. Thanks. -- Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/