From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:60237) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1giyC3-0004rY-Pn for qemu-devel@nongnu.org; Mon, 14 Jan 2019 04:06:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1giyC1-0002dc-PW for qemu-devel@nongnu.org; Mon, 14 Jan 2019 04:06:03 -0500 References: <20190111140857.4211-1-philmd@redhat.com> <20190111140857.4211-13-philmd@redhat.com> From: Thomas Huth Message-ID: <4f2bc8e2-de3b-aaac-bc4a-e3f3b013b44e@redhat.com> Date: Mon, 14 Jan 2019 09:59:54 +0100 MIME-Version: 1.0 In-Reply-To: <20190111140857.4211-13-philmd@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 12/15] ui/console: Remove MouseTransformInfo from qemu/typedefs.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= , Paolo Bonzini , qemu-devel@nongnu.org Cc: "Michael S. Tsirkin" , qemu-block@nongnu.org, Gerd Hoffmann , Peter Maydell , Xiao Guangrong , qemu-arm@nongnu.org, Laszlo Ersek , Marcel Apfelbaum , Igor Mammedov On 2019-01-11 15:08, Philippe Mathieu-Daud=C3=A9 wrote: > MouseTransformInfo is only used in "ui/console.h", there is no > need to expose it via "qemu/typedefs.h". You also touch devices.h here ... that should be mentioned, too? Thomas > Move the declaration to "ui/console.h" (removing the forward > declaration). >=20 > Signed-off-by: Philippe Mathieu-Daud=C3=A9 > --- > include/hw/devices.h | 1 + > include/qemu/typedefs.h | 1 - > include/ui/console.h | 4 ++-- > 3 files changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git a/include/hw/devices.h b/include/hw/devices.h > index 0e27feb0c2..b5f1662225 100644 > --- a/include/hw/devices.h > +++ b/include/hw/devices.h > @@ -4,6 +4,7 @@ > /* Devices that have nowhere better to go. */ > =20 > #include "hw/hw.h" > +#include "ui/console.h" > =20 > /* smc91c111.c */ > void smc91c111_init(NICInfo *, uint32_t, qemu_irq); > diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h > index 9baebe9d33..e44f1473a5 100644 > --- a/include/qemu/typedefs.h > +++ b/include/qemu/typedefs.h > @@ -49,7 +49,6 @@ typedef struct MigrationIncomingState MigrationIncomi= ngState; > typedef struct MigrationState MigrationState; > typedef struct Monitor Monitor; > typedef struct MonitorDef MonitorDef; > -typedef struct MouseTransformInfo MouseTransformInfo; > typedef struct MSIMessage MSIMessage; > typedef struct NetClientState NetClientState; > typedef struct NetFilterState NetFilterState; > diff --git a/include/ui/console.h b/include/ui/console.h > index 853fcf4eb7..b74246f0f5 100644 > --- a/include/ui/console.h > +++ b/include/ui/console.h > @@ -65,13 +65,13 @@ void qemu_remove_led_event_handler(QEMUPutLEDEntry = *entry); > =20 > void kbd_put_ledstate(int ledstate); > =20 > -struct MouseTransformInfo { > +typedef struct MouseTransformInfo { > /* Touchscreen resolution */ > int x; > int y; > /* Calibration values as used/generated by tslib */ > int a[7]; > -}; > +} MouseTransformInfo; > =20 > void hmp_mouse_set(Monitor *mon, const QDict *qdict); > =20 >=20