On Sun, May 20, 2018 at 12:40:15PM -0300, Fabio Estevam wrote: > From: Fabio Estevam > > Adopt the SPDX license identifier headers to ease license compliance > management. > > Signed-off-by: Fabio Estevam > --- > drivers/pwm/pwm-imx.c | 14 +++++--------- > 1 file changed, 5 insertions(+), 9 deletions(-) > > diff --git a/drivers/pwm/pwm-imx.c b/drivers/pwm/pwm-imx.c > index 08cbe81..6ddd6fd 100644 > --- a/drivers/pwm/pwm-imx.c > +++ b/drivers/pwm/pwm-imx.c > @@ -1,12 +1,8 @@ > -/* > - * simple driver for PWM (Pulse Width Modulator) controller > - * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License version 2 as > - * published by the Free Software Foundation. > - * > - * Derived from pxa PWM driver by eric miao > - */ > +// SPDX-License-Identifier: GPL-2.0 > +// > +// simple driver for PWM (Pulse Width Modulator) controller > +// > +// Derived from pxa PWM driver by eric miao Why do you replace the complete comment by C++ style? I thought only the SPDX identifier was required to be in that style. Thierry