diff mbox series

spi: dw-mmio: Do not add acpi modalias when CONFIG_ACPI is not enabled

Message ID 1588991392-24219-1-git-send-email-f.fangjian@huawei.com (mailing list archive)
State New, archived
Headers show
Series spi: dw-mmio: Do not add acpi modalias when CONFIG_ACPI is not enabled | expand

Commit Message

Jay Fang May 9, 2020, 2:29 a.m. UTC
Reduce unnecessary static memory allocation when CONFIG_ACPI is not enabled.

Signed-off-by: Jay Fang <f.fangjian@huawei.com>
---
 drivers/spi/spi-dw-mmio.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Mark Brown May 11, 2020, 11:25 a.m. UTC | #1
On Sat, 9 May 2020 10:29:51 +0800, Jay Fang wrote:
> Reduce unnecessary static memory allocation when CONFIG_ACPI is not enabled.

Applied to

   local tree asoc/for-5.7

Thanks!

[1/1] spi: dw-mmio: Do not add acpi modalias when CONFIG_ACPI is not enabled
      (no commit info)

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
Mark Brown May 11, 2020, 5:21 p.m. UTC | #2
On Sat, 9 May 2020 10:29:51 +0800, Jay Fang wrote:
> Reduce unnecessary static memory allocation when CONFIG_ACPI is not enabled.

Applied to

   local tree spi/for-5.7

Thanks!

[1/1] spi: dw-mmio: Do not add acpi modalias when CONFIG_ACPI is not enabled
      (no commit info)

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

diff --git a/drivers/spi/spi-dw-mmio.c b/drivers/spi/spi-dw-mmio.c
index 384a3ab..ad26283 100644
--- a/drivers/spi/spi-dw-mmio.c
+++ b/drivers/spi/spi-dw-mmio.c
@@ -233,11 +233,13 @@  static const struct of_device_id dw_spi_mmio_of_match[] = {
 };
 MODULE_DEVICE_TABLE(of, dw_spi_mmio_of_match);
 
+#ifdef CONFIG_ACPI
 static const struct acpi_device_id dw_spi_mmio_acpi_match[] = {
 	{"HISI0173", 0},
 	{},
 };
 MODULE_DEVICE_TABLE(acpi, dw_spi_mmio_acpi_match);
+#endif
 
 static struct platform_driver dw_spi_mmio_driver = {
 	.probe		= dw_spi_mmio_probe,