From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jingoo Han Subject: Re: [PATCH 2/4] power_supply: Introduce generic psy charging driver Date: Thu, 13 Feb 2014 09:51:29 +0900 Message-ID: <002301cf2855$bb121790$313646b0$%han@samsung.com> References: <1391490780-6141-1-git-send-email-jenny.tc@intel.com> <1391490780-6141-3-git-send-email-jenny.tc@intel.com> <20140204113630.GC2450@amd.pavel.ucw.cz> <20140205081458.GA19586@jenny-desktop> <20140212110005.GF25706@amd.pavel.ucw.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-reply-to: <20140212110005.GF25706@amd.pavel.ucw.cz> Content-language: ko Sender: linux-kernel-owner@vger.kernel.org To: 'Pavel Machek' , 'Jenny Tc' Cc: linux-kernel@vger.kernel.org, 'Dmitry Eremin-Solenikov' , 'Anton Vorontsov' , 'Anton Vorontsov' , 'Kim Milo' , 'Lee Jones' , 'Chanwoo Choi' , 'Sachin Kamat' , 'Lars-Peter Clausen' , =?ISO-8859-1?Q?'Pali_Roh=E1r'?= , 'Rhyland Klein' , "'Rafael J. Wysocki'" , 'David Woodhouse' , 'Tony Lindgren' , 'Russell King' , 'Sebastian Reichel' , aaro.koskinen@iki.fi, 'Pallala Ramakrishna' , freemangordon@abv.bg, linux-omap@vger.kernel.org, 'Jingoo Han' List-Id: linux-omap@vger.kernel.org On Wednesday, February 12, 2014 8:00 PM, Pavel Machek wrote: > On Wed 2014-02-05 13:44:58, Jenny Tc wrote: > > On Tue, Feb 04, 2014 at 12:36:30PM +0100, Pavel Machek wrote: > > > > +struct psy_charger_context { > > > > + bool is_usb_cable_evt_reg; > > > > + int psyc_cnt; > > > > + int batt_status; > > > > + /*cache battery and charger properties */ > > > > > > Comment coding style. Please run you patches through checkpatch. > > > > checkpatch doesn't throw any error/warning. /* ... */ not allowed for single line > > comments? (will fix missing space after /*) > > I meant the space after /*. Maybe checkpatch does not report anything > here, but I guess there are other places where it will comment :-). Yes, right. + /*cache battery and charger properties */ ^ 'one space' is necessary between '/*' and 'cache'. This can be fixed as below. + /* cache battery and charger properties */ Best regards, Jingoo Han