Commit dc2b051f authored by David Howells's avatar David Howells Committed by Linus Torvalds

[PATCH] missing semicolon in 2.6.7 VIODASD driver

There appears to be a missing semicolon in the VIODASD driver in 2.6.7.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 9278aa39
......@@ -742,7 +742,7 @@ static ssize_t probe_disks(struct device_driver *drv, const char *buf,
}
return count;
}
static DRIVER_ATTR(probe, S_IWUSR, NULL, probe_disks)
static DRIVER_ATTR(probe, S_IWUSR, NULL, probe_disks);
static struct vio_driver viodasd_driver = {
.name = "viodasd"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment