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/pci/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/pci/proc.c')
| -rw-r--r-- | drivers/pci/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/proc.c b/drivers/pci/proc.c index 12e4fb5824c1..7cde7c131fd0 100644 --- a/drivers/pci/proc.c +++ b/drivers/pci/proc.c @@ -419,7 +419,7 @@ int pci_proc_attach_device(struct pci_dev *dev) &proc_bus_pci_operations, dev); if (!e) return -ENOMEM; - e->size = dev->cfg_size; + proc_set_size(e, dev->cfg_size); dev->procent = e; return 0; |
