From: Dwayne Grant Mcconnell Date: Tue, 24 Oct 2006 16:27:30 +0000 (+0200) Subject: [POWERPC] spufs: fix signal2 file to report signal2 X-Git-Tag: v2.6.19-rc4~91^2~6 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f6b301b89b7bf0bb872da4f37dc28240413cbae7;p=~emulex%2Finfiniband.git [POWERPC] spufs: fix signal2 file to report signal2 This fixes the /signal2 file to actually give signal2 data. Signed-off-by: Dwayne Grant Mcconnell Signed-off-by: Arnd Bergmann Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/platforms/cell/spufs/hw_ops.c b/arch/powerpc/platforms/cell/spufs/hw_ops.c index efc452e71ab..d805ffed892 100644 --- a/arch/powerpc/platforms/cell/spufs/hw_ops.c +++ b/arch/powerpc/platforms/cell/spufs/hw_ops.c @@ -147,7 +147,7 @@ static void spu_hw_signal1_write(struct spu_context *ctx, u32 data) static u32 spu_hw_signal2_read(struct spu_context *ctx) { - return in_be32(&ctx->spu->problem->signal_notify1); + return in_be32(&ctx->spu->problem->signal_notify2); } static void spu_hw_signal2_write(struct spu_context *ctx, u32 data)