| Submitter | Eduardo Habkost |
|---|---|
| Date | Oct. 4, 2012, 7:15 p.m. |
| Message ID | <1349378133-25644-6-git-send-email-ehabkost@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/189257/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/Makefile.objs b/hw/Makefile.objs index 030cb2d..c876e16 100644 --- a/hw/Makefile.objs +++ b/hw/Makefile.objs @@ -178,7 +178,7 @@ common-obj-$(CONFIG_SD) += sd.o common-obj-y += bt.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o common-obj-y += bt-hci-csr.o common-obj-y += msmouse.o ps2.o -common-obj-y += qdev.o qdev-properties.o qdev-monitor.o +common-obj-y += qdev-core.o qdev-properties.o qdev-monitor.o common-obj-y += qdev-system.o qdev-properties-system.o common-obj-$(CONFIG_BRLAPI) += baum.o
Just to make clear that it's the qdev core code, corresponding to qdev-core.h. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> --- hw/Makefile.objs | 2 +- hw/{qdev.c => qdev-core.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename hw/{qdev.c => qdev-core.c} (100%) diff --git a/hw/qdev.c b/hw/qdev-core.c similarity index 100% rename from hw/qdev.c rename to hw/qdev-core.c