bool drmfb_shutdown(struct drmfb_softc *sc, int flags __unused) { genfb_enable_polling(sc->sc_da.da_dev); return true; }
void awin_fb_ddb_trap_callback(int where) { if (awin_fb_consoledev == NULL) return; if (where) { genfb_enable_polling(awin_fb_consoledev); } else { genfb_disable_polling(awin_fb_consoledev); } }
static void tegra_genfb_ddb_trap_callback(int where) { if (tegra_genfb_consoledev == NULL) return; if (where) { genfb_enable_polling(tegra_genfb_consoledev); } else { genfb_disable_polling(tegra_genfb_consoledev); } }
static bool awin_fb_shutdown(device_t self, int flags) { genfb_enable_polling(self); return true; }