From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50774) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aStyz-0006Nv-9d for qemu-devel@nongnu.org; Mon, 08 Feb 2016 17:08:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aStyy-0004cb-8y for qemu-devel@nongnu.org; Mon, 08 Feb 2016 17:08:33 -0500 Received: from zose-mta02.web4all.fr ([185.49.20.43]:46834) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aStyy-0004cN-2v for qemu-devel@nongnu.org; Mon, 08 Feb 2016 17:08:32 -0500 From: Jean-Christophe Dubois Date: Mon, 8 Feb 2016 23:08:29 +0100 Message-Id: In-Reply-To: References: Subject: [Qemu-devel] [PATCH v2 9/9] i.MX: Add missing descriptions in devices. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, peter.maydell@linaro.org, crosthwaite.peter@gmail.com Cc: Jean-Christophe Dubois Signed-off-by: Jean-Christophe Dubois --- Changes since V1: * Not present on V1 hw/arm/fsl-imx25.c | 1 + hw/arm/fsl-imx31.c | 1 + hw/i2c/imx_i2c.c | 1 + hw/net/imx_fec.c | 1 + 4 files changed, 4 insertions(+) diff --git a/hw/arm/fsl-imx25.c b/hw/arm/fsl-imx25.c index fb743bf..1fbc317 100644 --- a/hw/arm/fsl-imx25.c +++ b/hw/arm/fsl-imx25.c @@ -291,6 +291,7 @@ static void fsl_imx25_class_init(ObjectClass *oc, void *data) * arm_cpu_class_init() */ dc->cannot_destroy_with_object_finalize_yet = true; + dc->desc = "i.MX25 SOC"; } static const TypeInfo fsl_imx25_type_info = { diff --git a/hw/arm/fsl-imx31.c b/hw/arm/fsl-imx31.c index f2c2ce5..0d69a2c 100644 --- a/hw/arm/fsl-imx31.c +++ b/hw/arm/fsl-imx31.c @@ -265,6 +265,7 @@ static void fsl_imx31_class_init(ObjectClass *oc, void *data) * arm_cpu_class_init() */ dc->cannot_destroy_with_object_finalize_yet = true; + dc->desc = "i.MX31 SOC"; } static const TypeInfo fsl_imx31_type_info = { diff --git a/hw/i2c/imx_i2c.c b/hw/i2c/imx_i2c.c index cb62c7a..aa47a63 100644 --- a/hw/i2c/imx_i2c.c +++ b/hw/i2c/imx_i2c.c @@ -318,6 +318,7 @@ static void imx_i2c_class_init(ObjectClass *klass, void *data) dc->vmsd = &imx_i2c_vmstate; dc->reset = imx_i2c_reset; dc->realize = imx_i2c_realize; + dc->desc = "i.MX I2C controller"; } static const TypeInfo imx_i2c_type_info = { diff --git a/hw/net/imx_fec.c b/hw/net/imx_fec.c index c50bf7f..789a0c1 100644 --- a/hw/net/imx_fec.c +++ b/hw/net/imx_fec.c @@ -692,6 +692,7 @@ static void imx_fec_class_init(ObjectClass *klass, void *data) dc->reset = imx_fec_reset; dc->props = imx_fec_properties; dc->realize = imx_fec_realize; + dc->desc = "i.MX FEC Ethernet ccontroller"; } static const TypeInfo imx_fec_info = { -- 2.5.0