[PATCH 10/16] C99: 2.6.0-t3-bk7/arch/ppc64

From: CaT
Date: Wed Aug 20 2003 - 03:19:12 EST


diff -aur linux.backup/arch/ppc64/kernel/proc_ppc64.c linux/arch/ppc64/kernel/proc_ppc64.c
--- linux.backup/arch/ppc64/kernel/proc_ppc64.c Thu Jun 26 23:46:16 2003
+++ linux/arch/ppc64/kernel/proc_ppc64.c Wed Aug 20 16:40:22 2003
@@ -47,9 +47,9 @@
static int page_map_mmap( struct file *file, struct vm_area_struct *vma );

static struct file_operations page_map_fops = {
- llseek: page_map_seek,
- read: page_map_read,
- mmap: page_map_mmap
+ .llseek = page_map_seek,
+ .read = page_map_read,
+ .mmap = page_map_mmap
};


diff -aur linux.backup/arch/ppc64/kernel/scanlog.c linux/arch/ppc64/kernel/scanlog.c
--- linux.backup/arch/ppc64/kernel/scanlog.c Tue Mar 25 10:52:19 2003
+++ linux/arch/ppc64/kernel/scanlog.c Wed Aug 20 16:40:22 2003
@@ -190,11 +190,11 @@
}

struct file_operations scanlog_fops = {
- owner: THIS_MODULE,
- read: scanlog_read,
- write: scanlog_write,
- open: scanlog_open,
- release: scanlog_release,
+ .owner = THIS_MODULE,
+ .read = scanlog_read,
+ .write = scanlog_write,
+ .open = scanlog_open,
+ .release = scanlog_release,
};

int __init scanlog_init(void)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/