[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [qemu-upstream-unstable] i8259: Fix PIC_COMMON() macro
commit 25d87288b150032fedcf7b5380fb54fdbdd6788d Author: Andreas Färber <afaerber@xxxxxxx> Date: Sun Nov 25 20:44:33 2012 +0100 i8259: Fix PIC_COMMON() macro It used a wrong struct type name since its introduction in 8f04ee0882aec9fe91fb70f767edf5dacff59835 (isa: pic: convert to QEMU Object Model), apparently it is unused so far. Signed-off-by: Andreas Färber <afaerber@xxxxxxx> Signed-off-by: Anthony Liguori <aliguori@xxxxxxxxxx> --- hw/i8259_internal.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/i8259_internal.h b/hw/i8259_internal.h index 4137b61..8785b1d 100644 --- a/hw/i8259_internal.h +++ b/hw/i8259_internal.h @@ -33,7 +33,7 @@ typedef struct PICCommonState PICCommonState; #define TYPE_PIC_COMMON "pic-common" #define PIC_COMMON(obj) \ - OBJECT_CHECK(PICCommon, (obj), TYPE_PIC_COMMON) + OBJECT_CHECK(PICCommonState, (obj), TYPE_PIC_COMMON) #define PIC_COMMON_CLASS(klass) \ OBJECT_CLASS_CHECK(PICCommonClass, (klass), TYPE_PIC_COMMON) #define PIC_COMMON_GET_CLASS(obj) \ -- generated by git-patchbot for /home/xen/git/qemu-upstream-unstable.git _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |