Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: sm750fb: Replace multiple spaces with tabs when it suits

Replace multiple spaces before some comments with one tab. Aligning the
comment with the function below it.

Signed-off-by: Gabriela Bittencourt <gabrielabittencourt00@gmail.com>
Link: https://lore.kernel.org/r/20191029232207.4113-3-gabrielabittencourt00@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Gabriela Bittencourt and committed by
Greg Kroah-Hartman
600bf7ae 94d70f66

+10 -10
+10 -10
drivers/staging/sm750fb/sm750_accel.c
··· 243 243 */ 244 244 write_dpr(accel, DE_WINDOW_DESTINATION_BASE, dBase); /* dpr44 */ 245 245 246 - /* 247 - * Program pitch (distance between the 1st points of two adjacent lines). 248 - * Note that input pitch is BYTE value, but the 2D Pitch register uses 249 - * pixel values. Need Byte to pixel conversion. 250 - */ 246 + /* 247 + * Program pitch (distance between the 1st points of two adjacent lines). 248 + * Note that input pitch is BYTE value, but the 2D Pitch register uses 249 + * pixel values. Need Byte to pixel conversion. 250 + */ 251 251 write_dpr(accel, DE_PITCH, 252 252 ((dPitch / Bpp << DE_PITCH_DESTINATION_SHIFT) & 253 253 DE_PITCH_DESTINATION_MASK) | 254 254 (sPitch / Bpp & DE_PITCH_SOURCE_MASK)); /* dpr10 */ 255 255 256 - /* 257 - * Screen Window width in Pixels. 258 - * 2D engine uses this value to calculate the linear address in frame buffer 259 - * for a given point. 260 - */ 256 + /* 257 + * Screen Window width in Pixels. 258 + * 2D engine uses this value to calculate the linear address in frame buffer 259 + * for a given point. 260 + */ 261 261 write_dpr(accel, DE_WINDOW_WIDTH, 262 262 ((dPitch / Bpp << DE_WINDOW_WIDTH_DST_SHIFT) & 263 263 DE_WINDOW_WIDTH_DST_MASK) |