mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
chardev: enable modules, use for braille
Removes brlapi library dependency from core qemu. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 20200624131045.14512-11-kraxel@redhat.com
This commit is contained in:
parent
8d5a24c83d
commit
ef138c7724
4 changed files with 7 additions and 2 deletions
|
@ -18,8 +18,11 @@ chardev-obj-$(CONFIG_WIN32) += char-win.o
|
|||
chardev-obj-$(CONFIG_WIN32) += char-win-stdio.o
|
||||
|
||||
common-obj-y += msmouse.o wctablet.o testdev.o
|
||||
common-obj-$(CONFIG_BRLAPI) += baum.o
|
||||
|
||||
ifeq ($(CONFIG_BRLAPI),y)
|
||||
common-obj-m += baum.o
|
||||
baum.o-cflags := $(SDL_CFLAGS)
|
||||
baum.o-libs := $(BRLAPI_LIBS)
|
||||
endif
|
||||
|
||||
common-obj-$(CONFIG_SPICE) += spice.o
|
||||
|
|
|
@ -527,7 +527,7 @@ static const ChardevClass *char_get_class(const char *driver, Error **errp)
|
|||
const ChardevClass *cc;
|
||||
char *typename = g_strdup_printf("chardev-%s", driver);
|
||||
|
||||
oc = object_class_by_name(typename);
|
||||
oc = module_object_class_by_name(typename);
|
||||
g_free(typename);
|
||||
|
||||
if (!object_class_dynamic_cast(oc, TYPE_CHARDEV)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue