From: Roland Stigge Date: Thu, 9 Jun 2011 14:21:00 +0000 (+0200) Subject: staging: iio: max517: Fix iio_info changes X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8aa460e9e9f6eb6c23c8b244516bedddee901ceb;p=mv-sheeva.git staging: iio: max517: Fix iio_info changes struct iio_info introduced a bug where the second channel of a MAX518 can't be used. This commit fixes the typo (using max518 instead of the max517 struct). Signed-off-by: Roland Stigge Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/iio/dac/max517.c b/drivers/staging/iio/dac/max517.c index 881768df47a..2fe34d21b6a 100644 --- a/drivers/staging/iio/dac/max517.c +++ b/drivers/staging/iio/dac/max517.c @@ -195,7 +195,7 @@ static const struct iio_info max517_info = { }; static const struct iio_info max518_info = { - .attrs = &max517_attribute_group, + .attrs = &max518_attribute_group, .driver_module = THIS_MODULE, };