From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sudip Mukherjee Subject: Re: [PATCH 4/6] i2c-parport: use new parport device model Date: Wed, 20 May 2015 22:44:52 +0530 Message-ID: <20150520171452.GA9069@sudip-PC> References: <1432135622-8288-1-git-send-email-sudipm.mukherjee@gmail.com> <1432135622-8288-5-git-send-email-sudipm.mukherjee@gmail.com> <20150520154907.GB2001@katana> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20150520154907.GB2001@katana> Sender: linux-i2c-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Wolfram Sang Cc: Tim Waugh , Jean Delvare , Willy Tarreau , Greg Kroah-Hartman , Alan Cox , linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b@public.gmane.org List-Id: linux-i2c@vger.kernel.org On Wed, May 20, 2015 at 05:49:07PM +0200, Wolfram Sang wrote: > On Wed, May 20, 2015 at 08:57:00PM +0530, Sudip Mukherjee wrote: > > Modify i2c-parport driver to use the new parallel port device model. > > > > Tested-by: Jean Delvare > > Signed-off-by: Sudip Mukherjee > > --- > > In general: > > Acked-by: Wolfram Sang > > > static struct parport_driver i2c_parport_driver = { > > - .name = "i2c-parport", > > - .attach = i2c_parport_attach, > > - .detach = i2c_parport_detach, > > + .name = "i2c-parport", > > + .match_port = i2c_parport_attach, > > + .detach = i2c_parport_detach, > > + .devmodel = true, > > Minor nit: I prefer to not use tabs but a single space after the struct > member names. Less hazzle in the future and still readable IMO. It was having space originally. I changed that into tab as it was looking good with them as aligned. I will wait today for some more review and send v2 tomorrow with this chanage. regards sudip >