mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
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>
This commit is contained in:
parent
b42e17963c
commit
aa88bc0a07
@ -44,12 +44,12 @@ void reset_scoop(struct device *dev)
|
||||
{
|
||||
struct scoop_dev *sdev = dev_get_drvdata(dev);
|
||||
|
||||
iowrite16(0x0100, sdev->base + SCOOP_MCR); // 00
|
||||
iowrite16(0x0000, sdev->base + SCOOP_CDR); // 04
|
||||
iowrite16(0x0000, sdev->base + SCOOP_CCR); // 10
|
||||
iowrite16(0x0000, sdev->base + SCOOP_IMR); // 18
|
||||
iowrite16(0x00FF, sdev->base + SCOOP_IRM); // 14
|
||||
iowrite16(0x0000, sdev->base + SCOOP_ISR); // 1C
|
||||
iowrite16(0x0100, sdev->base + SCOOP_MCR); /* 00 */
|
||||
iowrite16(0x0000, sdev->base + SCOOP_CDR); /* 04 */
|
||||
iowrite16(0x0000, sdev->base + SCOOP_CCR); /* 10 */
|
||||
iowrite16(0x0000, sdev->base + SCOOP_IMR); /* 18 */
|
||||
iowrite16(0x00FF, sdev->base + SCOOP_IRM); /* 14 */
|
||||
iowrite16(0x0000, sdev->base + SCOOP_ISR); /* 1C */
|
||||
iowrite16(0x0000, sdev->base + SCOOP_IRM);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user