summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/cell/spu_base.c
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt2013-05-06 04:02:05 +0200
committerBenjamin Herrenschmidt2013-05-06 04:02:05 +0200
commit96cf3f66debbff7bc880ea747c10eef2d977a6fe (patch)
tree7a920b9221de57768b83ee0f138c7cb73a1de859 /arch/powerpc/platforms/cell/spu_base.c
parentirqdomain: Allow quiet failure mode (diff)
downloadkernel-qcow2-linux-96cf3f66debbff7bc880ea747c10eef2d977a6fe.tar.gz
kernel-qcow2-linux-96cf3f66debbff7bc880ea747c10eef2d977a6fe.tar.xz
kernel-qcow2-linux-96cf3f66debbff7bc880ea747c10eef2d977a6fe.zip
powerpc/cell/spufs: Fix status attribute permission
We are registering the attribute with permission 0644 but it doesn't have a store callback, which causes WARN_ON's during boot. Fix the permission. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/cell/spu_base.c')
-rw-r--r--arch/powerpc/platforms/cell/spu_base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/cell/spu_base.c b/arch/powerpc/platforms/cell/spu_base.c
index 8b1213993b10..f85db3a69b4a 100644
--- a/arch/powerpc/platforms/cell/spu_base.c
+++ b/arch/powerpc/platforms/cell/spu_base.c
@@ -715,7 +715,7 @@ static ssize_t spu_stat_show(struct device *dev,
spu->stats.libassist);
}
-static DEVICE_ATTR(stat, 0644, spu_stat_show, NULL);
+static DEVICE_ATTR(stat, 0444, spu_stat_show, NULL);
#ifdef CONFIG_KEXEC