|
|
26ba25 |
From d68f80c725a05ddf0a2a997ba35832e8f32c7fe9 Mon Sep 17 00:00:00 2001
|
|
|
26ba25 |
From: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
26ba25 |
Date: Thu, 7 Jun 2018 07:43:11 +0200
|
|
|
26ba25 |
Subject: [PATCH 259/268] Disable AT24Cx i2c eeprom
|
|
|
26ba25 |
|
|
|
26ba25 |
RH-Author: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
26ba25 |
Message-id: <fc4088a0a805b32f545c561a76d20115da8de85d.1528355911.git.mrezanin@redhat.com>
|
|
|
26ba25 |
Patchwork-id: 80598
|
|
|
26ba25 |
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 3/7] Disable AT24Cx i2c eeprom
|
|
|
26ba25 |
Bugzilla: 1586357
|
|
|
26ba25 |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Markus Armbruster <armbru@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
From: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
We do not want to support new eeprom_at24c device. It is protected
|
|
|
26ba25 |
by CONFIG_I2C option but we can't remove it as it cover other supported
|
|
|
26ba25 |
devices. Manually remove module with the device.
|
|
|
26ba25 |
|
|
|
26ba25 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
26ba25 |
---
|
|
|
26ba25 |
hw/nvram/Makefile.objs | 2 +-
|
|
|
26ba25 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/hw/nvram/Makefile.objs b/hw/nvram/Makefile.objs
|
|
|
26ba25 |
index a912d25..cbc8bba 100644
|
|
|
26ba25 |
--- a/hw/nvram/Makefile.objs
|
|
|
26ba25 |
+++ b/hw/nvram/Makefile.objs
|
|
|
26ba25 |
@@ -1,6 +1,6 @@
|
|
|
26ba25 |
common-obj-$(CONFIG_DS1225Y) += ds1225y.o
|
|
|
26ba25 |
common-obj-y += eeprom93xx.o
|
|
|
26ba25 |
-common-obj-$(CONFIG_I2C) += eeprom_at24c.o
|
|
|
26ba25 |
+#common-obj-$(CONFIG_I2C) += eeprom_at24c.o
|
|
|
26ba25 |
common-obj-y += fw_cfg.o
|
|
|
26ba25 |
common-obj-y += chrp_nvram.o
|
|
|
26ba25 |
common-obj-$(CONFIG_MAC_NVRAM) += mac_nvram.o
|
|
|
26ba25 |
--
|
|
|
26ba25 |
1.8.3.1
|
|
|
26ba25 |
|