Re: [PATCH 10/10] mach-osiris-dvs.c : use "&&" (not "&") with bool operands

2015-03-13 Thread Giedrius Statkevičius
On 2015.03.13 16:31, Ameen Ali wrote: > itwise AND ("&") was used > in logical expressions with operands having "bool" type. Replaced > bitwise AND operators with logical AND. > > Signed-off-by : Always use checkpatch to check the .patch for these kinds of issues. Also the Subject: is not

[PATCH 10/10] mach-osiris-dvs.c : use "&&" (not "&") with bool operands

2015-03-13 Thread Ameen Ali
itwise AND ("&") was used in logical expressions with operands having "bool" type. Replaced bitwise AND operators with logical AND. Signed-off-by : http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

[PATCH 10/10] mach-osiris-dvs.c : use (not ) with bool operands

2015-03-13 Thread Ameen Ali
itwise AND () was used in logical expressions with operands having bool type. Replaced bitwise AND operators with logical AND. Signed-off-by : ameenali...@gmail.com --- arch/arm/mach-s3c24xx/mach-osiris-dvs.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

Re: [PATCH 10/10] mach-osiris-dvs.c : use (not ) with bool operands

2015-03-13 Thread Giedrius Statkevičius
On 2015.03.13 16:31, Ameen Ali wrote: itwise AND () was used in logical expressions with operands having bool type. Replaced bitwise AND operators with logical AND. Signed-off-by : ameenali...@gmail.com This line's messed up. The correct format is: Signed-off-by: Full name email Always use