diff options
| author | David Howells <[email protected]> | 2013-04-11 23:38:51 +0000 |
|---|---|---|
| committer | Al Viro <[email protected]> | 2013-05-01 21:29:18 +0000 |
| commit | 271a15eabe094538d958dc68ccfc9c36b699247a (patch) | |
| tree | 586e33f88cece63828614b2a2f0e92007064f024 /drivers/zorro/proc.c | |
| parent | proc: Split kcore bits from linux/procfs.h into linux/kcore.h (diff) | |
| download | kernel-271a15eabe094538d958dc68ccfc9c36b699247a.tar.gz kernel-271a15eabe094538d958dc68ccfc9c36b699247a.zip | |
proc: Supply PDE attribute setting accessor functions
Supply accessor functions to set attributes in proc_dir_entry structs.
The following are supplied: proc_set_size() and proc_set_user().
Signed-off-by: David Howells <[email protected]>
Acked-by: Mauro Carvalho Chehab <[email protected]>
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
Signed-off-by: Al Viro <[email protected]>
Diffstat (limited to 'drivers/zorro/proc.c')
| -rw-r--r-- | drivers/zorro/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/zorro/proc.c b/drivers/zorro/proc.c index 6d3a602c004b..1c15ee7456b6 100644 --- a/drivers/zorro/proc.c +++ b/drivers/zorro/proc.c @@ -139,7 +139,7 @@ static int __init zorro_proc_attach_device(unsigned int slot) &zorro_autocon[slot]); if (!entry) return -ENOMEM; - entry->size = sizeof(struct zorro_dev); + proc_set_size(entry, sizeof(struct zorro_dev)); return 0; } |
