From: Andy Shevchenko <andy.shevchenko@gmail.com>
To: Richard Fitzgerald <rf@opensource.cirrus.com>
Cc: hdegoede@redhat.com, ilpo.jarvinen@linux.intel.com,
platform-driver-x86@vger.kernel.org,
linux-kernel@vger.kernel.org, patches@opensource.cirrus.com
Subject: Re: [PATCH v2] platform/x86: serial-multi-instantiate: Don't require both I2C and SPI
Date: Mon, 26 Aug 2024 23:10:16 +0300 [thread overview]
Message-ID: <ZszhKCKYl9161RIP@surfacebook.localdomain> (raw)
In-Reply-To: <20240814132939.308696-1-rf@opensource.cirrus.com>
Wed, Aug 14, 2024 at 02:29:39PM +0100, Richard Fitzgerald kirjoitti:
> Change the Kconfig dependency so that it doesn't require both I2C and SPI
> subsystems to be built. Make a few small changes to the code so that the
> code for a bus is only called if the bus is being built.
>
> When SPI support was added to serial-multi-instantiate it created a
> dependency that both CONFIG_I2C and CONFIG_SPI must be enabled.
> Typically they are, but there's no reason why this should be a
> requirement. A specific kernel build could have only I2C devices
> or only SPI devices. It should be possible to use serial-multi-instantiate
> if only I2C or only SPI is enabled.
>
> The dependency formula used is:
>
> depends on (I2C && !SPI) || (!I2C && SPI) || (I2C && SPI)
>
> The advantage of this approach is that if I2C=m or SPI=m then
> SERIAL_MULTI_INSTANTIATE is limited to n/m.
...
> static void smi_devs_unregister(struct smi *smi)
> {
> +#if IS_REACHABLE(CONFIG_I2C)
There is no explanation why ugly ifdeffery is used here, while normal
conditionals elsewhere.
> while (smi->i2c_num--)
> i2c_unregister_device(smi->i2c_devs[smi->i2c_num]);
> +#endif
>
> - while (smi->spi_num--)
> - spi_unregister_device(smi->spi_devs[smi->spi_num]);
> + if (IS_REACHABLE(CONFIG_SPI)) {
> + while (smi->spi_num--)
> + spi_unregister_device(smi->spi_devs[smi->spi_num]);
> + }
> }
There are ways to solve this:
1) add a stub for I2C=n for i2c_unregister_device();
2) resplit this driver to have several built modules:
core, I2C parts, SPI parts.
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2024-08-26 20:10 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-14 13:29 Richard Fitzgerald
2024-08-19 13:17 ` Hans de Goede
2024-08-26 20:10 ` Andy Shevchenko [this message]
2024-08-27 9:05 ` Hans de Goede
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZszhKCKYl9161RIP@surfacebook.localdomain \
--to=andy.shevchenko@gmail.com \
--cc=hdegoede@redhat.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=patches@opensource.cirrus.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=rf@opensource.cirrus.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®