Re: [PATCH] staging: sm750fb: use tabs for indentation

2015-06-24 Thread Dan Carpenter
On Mon, Jun 22, 2015 at 11:30:30AM -0700, Juston Li wrote: On Mon, Jun 22, 2015 at 10:46 AM, Dan Carpenter dan.carpen...@oracle.com wrote: On Fri, Jun 19, 2015 at 05:50:50PM -0700, Juston Li wrote: void sii164ClearInterrupt(void) { -unsigned char detectReg; + unsigned char

Re: [PATCH] staging: sm750fb: use tabs for indentation

2015-06-24 Thread Juston Li
On Wed, Jun 24, 2015 at 2:28 AM, Dan Carpenter dan.carpen...@oracle.com wrote: Have you sent this patchset to the list? I don't see it in my inbox. regards, dan carpenter Odd, I sent it on Saturday. Anyways made a change to it and just sent in v3. Thanks Juston

Re: [PATCH] staging: sm750fb: use tabs for indentation

2015-06-22 Thread Dan Carpenter
On Fri, Jun 19, 2015 at 05:50:50PM -0700, Juston Li wrote: void sii164ClearInterrupt(void) { -unsigned char detectReg; + unsigned char detectReg; -/* Clear the MDI interrupt */ -detectReg = i2cReadReg(SII164_I2C_ADDRESS, SII164_DETECT); -

Re: [PATCH] staging: sm750fb: use tabs for indentation

2015-06-22 Thread Juston Li
On Mon, Jun 22, 2015 at 10:46 AM, Dan Carpenter dan.carpen...@oracle.com wrote: On Fri, Jun 19, 2015 at 05:50:50PM -0700, Juston Li wrote: void sii164ClearInterrupt(void) { -unsigned char detectReg; + unsigned char detectReg; -/* Clear the MDI interrupt */ -detectReg =

[PATCH] staging: sm750fb: use tabs for indentation

2015-06-19 Thread Juston Li
Replace spaces with tabs for indentation to fix the checkpatch.pl warning 'WARNING: please, no spaces at the start of a line' checkpatch doesn't catch comments indented by spaces but I fixed comments adjacent to warnings as well so they would remain aligned. Signed-off-by: Juston Li