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

arm: scoop.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
aa88bc0a b42e1796

+6 -6
+6 -6
arch/arm/common/scoop.c
··· 44 44 { 45 45 struct scoop_dev *sdev = dev_get_drvdata(dev); 46 46 47 - iowrite16(0x0100, sdev->base + SCOOP_MCR); // 00 48 - iowrite16(0x0000, sdev->base + SCOOP_CDR); // 04 49 - iowrite16(0x0000, sdev->base + SCOOP_CCR); // 10 50 - iowrite16(0x0000, sdev->base + SCOOP_IMR); // 18 51 - iowrite16(0x00FF, sdev->base + SCOOP_IRM); // 14 52 - iowrite16(0x0000, sdev->base + SCOOP_ISR); // 1C 47 + iowrite16(0x0100, sdev->base + SCOOP_MCR); /* 00 */ 48 + iowrite16(0x0000, sdev->base + SCOOP_CDR); /* 04 */ 49 + iowrite16(0x0000, sdev->base + SCOOP_CCR); /* 10 */ 50 + iowrite16(0x0000, sdev->base + SCOOP_IMR); /* 18 */ 51 + iowrite16(0x00FF, sdev->base + SCOOP_IRM); /* 14 */ 52 + iowrite16(0x0000, sdev->base + SCOOP_ISR); /* 1C */ 53 53 iowrite16(0x0000, sdev->base + SCOOP_IRM); 54 54 } 55 55