From: Zhu Guihua Date: Mon, 3 Nov 2014 05:51:34 +0000 (+0800) Subject: icc_bus: fix typo ICC_BRIGDE -> ICC_BRIDGE X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~209^2~471^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a0614c6c782cb760ec925f1662037c1c6038f0c;p=sdk%2Femulator%2Fqemu.git icc_bus: fix typo ICC_BRIGDE -> ICC_BRIDGE Rename ICC_BRIGDE for better readability. Signed-off-by: Zhu Guihua Reviewed-by: Markus Armbruster Signed-off-by: Michael Tokarev --- diff --git a/hw/cpu/icc_bus.c b/hw/cpu/icc_bus.c index 9575fd6a42..6646ea2b34 100644 --- a/hw/cpu/icc_bus.c +++ b/hw/cpu/icc_bus.c @@ -73,11 +73,11 @@ typedef struct ICCBridgeState { MemoryRegion apic_container; } ICCBridgeState; -#define ICC_BRIGDE(obj) OBJECT_CHECK(ICCBridgeState, (obj), TYPE_ICC_BRIDGE) +#define ICC_BRIDGE(obj) OBJECT_CHECK(ICCBridgeState, (obj), TYPE_ICC_BRIDGE) static void icc_bridge_init(Object *obj) { - ICCBridgeState *s = ICC_BRIGDE(obj); + ICCBridgeState *s = ICC_BRIDGE(obj); SysBusDevice *sb = SYS_BUS_DEVICE(obj); qbus_create_inplace(&s->icc_bus, sizeof(s->icc_bus), TYPE_ICC_BUS,