From: rodrigosiqueira Date: Fri, 16 Feb 2018 19:44:41 +0000 (-0200) Subject: iio:pressure:ms5611: Fix coding style in probe function X-Git-Tag: v4.19~1302^2~388^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1482705087b820a3b7019cc9d8a7c760b8999994;p=platform%2Fkernel%2Flinux-rpi.git iio:pressure:ms5611: Fix coding style in probe function This patch fixes the checkpatch.pl warning and error: iio/pressure/ms5611.h:66: ERROR: code indent should use tabs where possible iio/pressure/ms5611.h:66: WARNING: please, no spaces at the start of a line iio/pressure/ms5611.h:66: ERROR: "foo* bar" should be "foo *bar" Signed-off-by: Rodrigo Siqueira Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/pressure/ms5611.h b/drivers/iio/pressure/ms5611.h index ccda63c..ead9e9f 100644 --- a/drivers/iio/pressure/ms5611.h +++ b/drivers/iio/pressure/ms5611.h @@ -63,7 +63,7 @@ struct ms5611_state { }; int ms5611_probe(struct iio_dev *indio_dev, struct device *dev, - const char* name, int type); + const char *name, int type); int ms5611_remove(struct iio_dev *indio_dev); #endif /* _MS5611_H */