[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200226125004.39748c1d@collabora.com>
Date: Wed, 26 Feb 2020 12:50:04 +0100
From: Boris Brezillon <boris.brezillon@...labora.com>
To: Boris Brezillon <bbrezillon@...nel.org>,
Przemysław Gaj <pgaj@...ence.com>,
Vitor Soares <Vitor.Soares@...opsys.com>,
linux-i3c@...ts.infradead.org
Cc: linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2/3] i3c: Generate aliases for i3c modules
On Sat, 22 Feb 2020 11:27:10 +0100
Boris Brezillon <boris.brezillon@...labora.com> wrote:
> +static int do_i3c_entry(const char *filename, void *symval,
> + char *alias)
> +{
> + DEF_FIELD(symval, i3c_device_id, match_flags);
> + DEF_FIELD(symval, i3c_device_id, dcr);
> + DEF_FIELD(symval, i3c_device_id, manuf_id);
> + DEF_FIELD(symval, i3c_device_id, part_id);
> + DEF_FIELD(symval, i3c_device_id, extra_info);
> +
> + strcpy(alias, "i3c:");
> + ADD(alias, "dcr", match_flags & I3C_MATCH_DCR, dcr);
> + ADD(alias, "manuf", match_flags & I3C_MATCH_MANUF, dcr);
^manuf_id
> + ADD(alias, "part", match_flags & I3C_MATCH_PART, dcr);
^part_id
> + ADD(alias, "ext", match_flags & I3C_MATCH_EXTRA_INFO, dcr);
^extra_info
Powered by blists - more mailing lists