[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200321172110.03524338@archlinux>
Date: Sat, 21 Mar 2020 17:21:10 +0000
From: Jonathan Cameron <jic23@...nel.org>
To: Alexandru Ardelean <alexandru.ardelean@...log.com>
Cc: <linux-iio@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<devicetree@...r.kernel.org>, <robh+dt@...nel.org>,
<Laszlo.Nagy@...log.com>, <Andrei.Grozav@...log.com>,
<Michael.Hennerich@...log.com>, <Istvan.Csomortani@...log.com>,
<Adrian.Costina@...log.com>, <Dragos.Bogdan@...log.com>
Subject: Re: [PATCH v11 2/8] include: fpga: adi-axi-common.h: add version
helper macros
On Sat, 21 Mar 2020 10:53:09 +0200
Alexandru Ardelean <alexandru.ardelean@...log.com> wrote:
> The format for all ADI AXI IP cores is the same.
> i.e. 'major.minor.patch'.
>
> This patch adds the helper macros to be re-used in ADI AXI drivers.
>
> Acked-by: Moritz Fischer <mdf@...nel.org>
> Signed-off-by: Alexandru Ardelean <alexandru.ardelean@...log.com>
Applied,
Thanks,
Jonathan
> ---
> include/linux/fpga/adi-axi-common.h | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/include/linux/fpga/adi-axi-common.h b/include/linux/fpga/adi-axi-common.h
> index ebd4e07ae3d8..141ac3f251e6 100644
> --- a/include/linux/fpga/adi-axi-common.h
> +++ b/include/linux/fpga/adi-axi-common.h
> @@ -16,4 +16,8 @@
> #define ADI_AXI_PCORE_VER(major, minor, patch) \
> (((major) << 16) | ((minor) << 8) | (patch))
>
> +#define ADI_AXI_PCORE_VER_MAJOR(version) (((version) >> 16) & 0xff)
> +#define ADI_AXI_PCORE_VER_MINOR(version) (((version) >> 8) & 0xff)
> +#define ADI_AXI_PCORE_VER_PATCH(version) ((version) & 0xff)
> +
> #endif /* ADI_AXI_COMMON_H_ */
Powered by blists - more mailing lists