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

arm: uengine.c: remove C99 comments

Comments should be /* */ not //.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Jiri Kosina <trivial@kernel.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

H Hartley Sweeten and committed by
Jiri Kosina
909ea93b aa88bc0a

+9 -9
+9 -9
arch/arm/common/uengine.c
··· 312 312 b1 = (gpr_a[i] >> 8) & 0xff; 313 313 b0 = gpr_a[i] & 0xff; 314 314 315 - // immed[@ai, (b1 << 8) | b0] 316 - // 11110000 0000VVVV VVVV11VV VVVVVV00 1IIIIIII 315 + /* immed[@ai, (b1 << 8) | b0] */ 316 + /* 11110000 0000VVVV VVVV11VV VVVVVV00 1IIIIIII */ 317 317 ucode[offset++] = 0xf0; 318 318 ucode[offset++] = (b1 >> 4); 319 319 ucode[offset++] = (b1 << 4) | 0x0c | (b0 >> 6); 320 320 ucode[offset++] = (b0 << 2); 321 321 ucode[offset++] = 0x80 | i; 322 322 323 - // immed_w1[@ai, (b3 << 8) | b2] 324 - // 11110100 0100VVVV VVVV11VV VVVVVV00 1IIIIIII 323 + /* immed_w1[@ai, (b3 << 8) | b2] */ 324 + /* 11110100 0100VVVV VVVV11VV VVVVVV00 1IIIIIII */ 325 325 ucode[offset++] = 0xf4; 326 326 ucode[offset++] = 0x40 | (b3 >> 4); 327 327 ucode[offset++] = (b3 << 4) | 0x0c | (b2 >> 6); ··· 340 340 b1 = (gpr_b[i] >> 8) & 0xff; 341 341 b0 = gpr_b[i] & 0xff; 342 342 343 - // immed[@bi, (b1 << 8) | b0] 344 - // 11110000 0000VVVV VVVV001I IIIIII11 VVVVVVVV 343 + /* immed[@bi, (b1 << 8) | b0] */ 344 + /* 11110000 0000VVVV VVVV001I IIIIII11 VVVVVVVV */ 345 345 ucode[offset++] = 0xf0; 346 346 ucode[offset++] = (b1 >> 4); 347 347 ucode[offset++] = (b1 << 4) | 0x02 | (i >> 6); 348 348 ucode[offset++] = (i << 2) | 0x03; 349 349 ucode[offset++] = b0; 350 350 351 - // immed_w1[@bi, (b3 << 8) | b2] 352 - // 11110100 0100VVVV VVVV001I IIIIII11 VVVVVVVV 351 + /* immed_w1[@bi, (b3 << 8) | b2] */ 352 + /* 11110100 0100VVVV VVVV001I IIIIII11 VVVVVVVV */ 353 353 ucode[offset++] = 0xf4; 354 354 ucode[offset++] = 0x40 | (b3 >> 4); 355 355 ucode[offset++] = (b3 << 4) | 0x02 | (i >> 6); ··· 357 357 ucode[offset++] = b2; 358 358 } 359 359 360 - // ctx_arb[kill] 360 + /* ctx_arb[kill] */ 361 361 ucode[offset++] = 0xe0; 362 362 ucode[offset++] = 0x00; 363 363 ucode[offset++] = 0x01;