Staging: iio: fix sizeof *ring should be sizeof(*ring)
authorEbru Akagunduz <ebru.akagunduz@gmail.com>
Tue, 8 Oct 2013 15:08:17 +0000 (18:08 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 Oct 2013 20:26:13 +0000 (13:26 -0700)
Fix checkpatch.pl issues with sizeof *ring should be sizeof(*ring)
in sca3000_ring.c

Signed-off-by: Ebru Akagunduz <ebru.akagunduz@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/iio/accel/sca3000_ring.c

index 0f2ee33..db44240 100644 (file)
@@ -252,7 +252,7 @@ static struct iio_buffer *sca3000_rb_allocate(struct iio_dev *indio_dev)
        struct iio_buffer *buf;
        struct iio_hw_buffer *ring;
 
-       ring = kzalloc(sizeof *ring, GFP_KERNEL);
+       ring = kzalloc(sizeof(*ring), GFP_KERNEL);
        if (!ring)
                return NULL;