The patch titled Subject: proc-convert-everything-to-struct-proc_ops-fix has been removed from the -mm tree. Its filename was proc-convert-everything-to-struct-proc_ops-fix.patch This patch was dropped because it was folded into proc-convert-everything-to-struct-proc_ops.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: proc-convert-everything-to-struct-proc_ops-fix fix drivers/isdn/capi/kcapi_proc.c Cc: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/isdn/capi/kcapi_proc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/drivers/isdn/capi/kcapi_proc.c~proc-convert-everything-to-struct-proc_ops-fix +++ a/drivers/isdn/capi/kcapi_proc.c @@ -199,8 +199,8 @@ static ssize_t empty_read(struct file *f return 0; } -static const struct file_operations empty_fops = { - .read = empty_read, +static const struct proc_ops empty_proc_ops = { + .proc_read = empty_read, }; // --------------------------------------------------------------------------- @@ -214,7 +214,7 @@ kcapi_proc_init(void) proc_create_seq("capi/contrstats", 0, NULL, &seq_contrstats_ops); proc_create_seq("capi/applications", 0, NULL, &seq_applications_ops); proc_create_seq("capi/applstats", 0, NULL, &seq_applstats_ops); - proc_create("capi/driver", 0, NULL, &empty_fops); + proc_create("capi/driver", 0, NULL, &empty_proc_ops); } void _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are ipc-consolidate-all-xxxctl_down-functions.patch drivers-block-null_blk_mainc-fix-layout.patch drivers-block-null_blk_mainc-fix-uninitialized-var-warnings.patch proc-convert-everything-to-struct-proc_ops.patch