[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <j2r4e5ebad51004052021id38109fcif10d1805e2600b32@mail.gmail.com>
Date: Tue, 6 Apr 2010 11:21:53 +0800
From: Sonic Zhang <sonic.adi@...il.com>
To: Jonathan Cameron <jic23@....ac.uk>
Cc: Linux Kernel <linux-kernel@...r.kernel.org>,
linux-iio <linux-iio@...r.kernel.org>
Subject: Re: [PATCH] IIO: struct iio_dev_attr should be defined as static.
Hi Jonathan,
Any comments?
Sonic
On Fri, Apr 2, 2010 at 10:55 AM, sonic zhang <sonic.adi@...il.com> wrote:
>
> Otherwise link errors "multiple definition of `iio_dev_attr_mode'"
> are reported when compile multiple different iio drivers with the
> same attribute name.
>
> Signed-off-by: Sonic Zhang <sonic.adi@...il.com>
> ---
> drivers/staging/iio/sysfs.h | 6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/staging/iio/sysfs.h b/drivers/staging/iio/sysfs.h
> index e501e13..39d207e 100644
> --- a/drivers/staging/iio/sysfs.h
> +++ b/drivers/staging/iio/sysfs.h
> @@ -95,16 +95,16 @@ struct iio_const_attr {
> .val2 = _val2 }
>
> #define IIO_DEVICE_ATTR(_name, _mode, _show, _store, _addr) \
> - struct iio_dev_attr iio_dev_attr_##_name \
> + static struct iio_dev_attr iio_dev_attr_##_name \
> = IIO_ATTR(_name, _mode, _show, _store, _addr)
>
>
> #define IIO_DEVICE_ATTR_2(_name, _mode, _show, _store, _addr, _val2) \
> - struct iio_dev_attr iio_dev_attr_##_name \
> + static struct iio_dev_attr iio_dev_attr_##_name \
> = IIO_ATTR_2(_name, _mode, _show, _store, _addr, _val2)
>
> #define IIO_CONST_ATTR(_name, _string) \
> - struct iio_const_attr iio_const_attr_##_name \
> + static struct iio_const_attr iio_const_attr_##_name \
> = { .string = _string, \
> .dev_attr = __ATTR(_name, S_IRUGO, iio_read_const_attr, NULL)}
>
> --
> 1.6.0
>
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists