diff options
author | Alexander Graf <agraf@suse.de> | 2010-12-08 12:05:42 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-12-11 15:24:26 +0000 |
commit | 32600a309f34ab173bbb79de73e85b7879d235bf (patch) | |
tree | 22bf8caf993e10e30e411715fd9c416269e5e1f0 /Makefile.target | |
parent | f23cea4d04287c2e7c1bb614c84c3b0086bcb7d3 (diff) | |
download | qemu-32600a309f34ab173bbb79de73e85b7879d235bf.zip |
e1000: Make little endian
The e1000 has compatibility code to handle big endianness which makes it
mandatory to be recompiled on different targets.
With the generic mmio endianness solution, there's no need for that anymore.
We just declare all mmio to be little endian and call it a day.
Because we don't depend on the target endianness anymore, we can also
move the driver over to Makefile.objs.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index 578484452b..39d8df994b 100644 --- a/Makefile.target +++ b/Makefile.target @@ -211,7 +211,6 @@ obj-$(CONFIG_USB_OHCI) += usb-ohci.o # PCI network cards obj-$(CONFIG_RTL8139_PCI) += rtl8139.o -obj-$(CONFIG_E1000_PCI) += e1000.o # Inter-VM PCI shared memory obj-$(CONFIG_KVM) += ivshmem.o |