diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2013-05-07 11:20:26 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-05-07 15:01:11 -0400 |
commit | 254844d3b9959b52fedf2f22810cc66e82a1ca16 (patch) | |
tree | 1bc220b4c667b6d696ed2620798c2783cf24e1de /arch/cris | |
parent | 4385bab128911df14ab25f0b5ae1a48d7b53dd94 (diff) | |
download | op-kernel-dev-254844d3b9959b52fedf2f22810cc66e82a1ca16.zip op-kernel-dev-254844d3b9959b52fedf2f22810cc66e82a1ca16.tar.gz |
proc: Use PDE attribute setting accessor functions
arch/arm/mach-msm/last_radio_log.c: In function 'msm_init_last_radio_log':
arch/arm/mach-msm/last_radio_log.c:69:7: error: dereferencing pointer to incomplete type
arch/cris/kernel/profile.c: In function 'init_cris_profile':
arch/cris/kernel/profile.c:79:8: error: dereferencing pointer to incomplete type
Use proc_set_size(), cfr. commit 271a15eabe094538d958dc68ccfc9c36b699247a
("proc: Supply PDE attribute setting accessor functions")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/cris')
-rw-r--r-- | arch/cris/kernel/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/cris/kernel/profile.c b/arch/cris/kernel/profile.c index b82e086..cd9f15b 100644 --- a/arch/cris/kernel/profile.c +++ b/arch/cris/kernel/profile.c @@ -76,7 +76,7 @@ static int __init init_cris_profile(void) entry = proc_create("system_profile", S_IWUSR | S_IRUGO, NULL, &cris_proc_profile_operations); if (entry) { - entry->size = SAMPLE_BUFFER_SIZE; + proc_set_size(entry, SAMPLE_BUFFER_SIZE); } prof_running = 1; |