diff mbox

[1/6] w1: omap-hdq: add section annotation to remove

Message ID 1343217932-25372-1-git-send-email-balbi@ti.com (mailing list archive)
State New, archived
Headers show

Commit Message

Felipe Balbi July 25, 2012, 12:05 p.m. UTC
trivial patch, no functional changes.

Signed-off-by: Felipe Balbi <balbi@ti.com>
---
 drivers/w1/masters/omap_hdq.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Evgeniy Polyakov July 26, 2012, 2:45 p.m. UTC | #1
Hi all

On Wed, Jul 25, 2012 at 03:05:27PM +0300, Felipe Balbi (balbi@ti.com) wrote:
> trivial patch, no functional changes.
> 
> Signed-off-by: Felipe Balbi <balbi@ti.com>

Looks good to me
Who should pick it up?

Feel free to add my acked-by: Evgeniy Polyakov <zbr@ioremap.net>
Felipe Balbi July 27, 2012, 7:04 a.m. UTC | #2
Hi,

On Thu, Jul 26, 2012 at 06:45:26PM +0400, Evgeniy Polyakov wrote:
> Hi all
> 
> On Wed, Jul 25, 2012 at 03:05:27PM +0300, Felipe Balbi (balbi@ti.com) wrote:
> > trivial patch, no functional changes.
> > 
> > Signed-off-by: Felipe Balbi <balbi@ti.com>
> 
> Looks good to me
> Who should pick it up?
> 
> Feel free to add my acked-by: Evgeniy Polyakov <zbr@ioremap.net>

I thought you would :-p Then I guess Tony, maybe ?
Evgeniy Polyakov July 31, 2012, 11:19 p.m. UTC | #3
On Fri, Jul 27, 2012 at 10:04:44AM +0300, Felipe Balbi (balbi@ti.com) wrote:
> > Feel free to add my acked-by: Evgeniy Polyakov <zbr@ioremap.net>
> 
> I thought you would :-p Then I guess Tony, maybe ?

Greg, will you pick this patchset?
It is fairly simple and without any behaviour changes, but things look
like being stuck here...
Greg KH July 31, 2012, 11:26 p.m. UTC | #4
On Wed, Aug 01, 2012 at 03:19:10AM +0400, Evgeniy Polyakov wrote:
> On Fri, Jul 27, 2012 at 10:04:44AM +0300, Felipe Balbi (balbi@ti.com) wrote:
> > > Feel free to add my acked-by: Evgeniy Polyakov <zbr@ioremap.net>
> > 
> > I thought you would :-p Then I guess Tony, maybe ?
> 
> Greg, will you pick this patchset?
> It is fairly simple and without any behaviour changes, but things look
> like being stuck here...

Yes, after 3.6-rc1 is out I will.

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/w1/masters/omap_hdq.c b/drivers/w1/masters/omap_hdq.c
index 291897c..46e1f6f 100644
--- a/drivers/w1/masters/omap_hdq.c
+++ b/drivers/w1/masters/omap_hdq.c
@@ -73,11 +73,11 @@  struct hdq_data {
 };
 
 static int __devinit omap_hdq_probe(struct platform_device *pdev);
-static int omap_hdq_remove(struct platform_device *pdev);
+static int __devexit omap_hdq_remove(struct platform_device *pdev);
 
 static struct platform_driver omap_hdq_driver = {
 	.probe =	omap_hdq_probe,
-	.remove =	omap_hdq_remove,
+	.remove =	__devexit_p(omap_hdq_remove),
 	.driver =	{
 		.name =	"omap_hdq",
 	},
@@ -630,7 +630,7 @@  err_kmalloc:
 
 }
 
-static int omap_hdq_remove(struct platform_device *pdev)
+static int __devexit omap_hdq_remove(struct platform_device *pdev)
 {
 	struct hdq_data *hdq_data = platform_get_drvdata(pdev);