]> git.proxmox.com Git - qemu.git/blobdiff - qemu-char.c
char: Remove special init_reset handling
[qemu.git] / qemu-char.c
index 1f63019520f646b7328e9087c751114f4d0bb0fd..d78bae3551ef62d831ed41745338567240a61da2 100644 (file)
@@ -128,15 +128,6 @@ void qemu_chr_reset(CharDriverState *s)
     }
 }
 
-void qemu_chr_initial_reset(void)
-{
-    CharDriverState *chr;
-
-    QTAILQ_FOREACH(chr, &chardevs, next) {
-        qemu_chr_reset(chr);
-    }
-}
-
 int qemu_chr_write(CharDriverState *s, const uint8_t *buf, int len)
 {
     return s->chr_write(s, buf, len);