From: Peter Hurley Date: Wed, 30 Jan 2013 22:44:16 +0000 (-0500) Subject: staging/fwserial: Annotate rcu pointers with __rcu X-Git-Tag: v3.9-rc1~127^2~207 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1aedfa8f25c13a2f5428cb1b0f806e04121cbef5;p=profile%2Fivi%2Fkernel-x86-ivi.git staging/fwserial: Annotate rcu pointers with __rcu Fixes these sparse warnings: drivers/staging/fwserial/fwserial.c:430:16: sparse: incompatible types in comparison expression (different address spaces) drivers/staging/fwserial/fwserial.c:699:30: sparse: incompatible types in comparison expression (different address spaces) drivers/staging/fwserial/fwserial.c:802:16: sparse: incompatible types in comparison expression (different address spaces) drivers/staging/fwserial/fwserial.c:898:16: sparse: incompatible types in comparison expression (different address spaces) drivers/staging/fwserial/fwserial.c:1842:14: sparse: incompatible types in comparison expression (different address spaces) Reported-by: kbuild test robot Signed-off-by: Peter Hurley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/fwserial/fwserial.h b/drivers/staging/fwserial/fwserial.h index 33a3a53..514f571 100644 --- a/drivers/staging/fwserial/fwserial.h +++ b/drivers/staging/fwserial/fwserial.h @@ -280,7 +280,7 @@ struct fwtty_port { loopback:1; unsigned long flags; - struct fwtty_peer *peer; + struct fwtty_peer __rcu *peer; struct async_icount icount; struct stats stats;