On Thu, 17 Aug 2017 16:21:37 +0200 Michał Mirosław <mirq-linux@xxxxxxxxxxxx> wrote: > Make sampling_frequency_avail per-type - like sampling_frequency is. > > Signed-off-by: Michał Mirosław <mirq-linux@xxxxxxxxxxxx> Hmm. This is an ABI change, but as the interface is clearly rather odd lets take the risk and hope no one notices. Which they shouldn't if they are using the ABI correctly. Jonathan > --- > drivers/iio/accel/kxcjk-1013.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/iio/accel/kxcjk-1013.c b/drivers/iio/accel/kxcjk-1013.c > index 50d9eefa745f..8bde6bead073 100644 > --- a/drivers/iio/accel/kxcjk-1013.c > +++ b/drivers/iio/accel/kxcjk-1013.c > @@ -891,12 +891,13 @@ static ssize_t kxcjk1013_get_samp_freq_avail(struct device *dev, > return sprintf(buf, "%s\n", samp_freq_avail); > } > > -static IIO_DEV_ATTR_SAMP_FREQ_AVAIL(kxcjk1013_get_samp_freq_avail); > +static IIO_DEVICE_ATTR(in_accel_sampling_frequency_available, S_IRUGO, > + kxcjk1013_get_samp_freq_avail, NULL, 0); > > static IIO_CONST_ATTR(in_accel_scale_available, "0.009582 0.019163 0.038326"); > > static struct attribute *kxcjk1013_attributes[] = { > - &iio_dev_attr_sampling_frequency_available.dev_attr.attr, > + &iio_dev_attr_in_accel_sampling_frequency_available.dev_attr.attr, > &iio_const_attr_in_accel_scale_available.dev_attr.attr, > NULL, > }; -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html