コード例 #1
0
ファイル: drmfb.c プロジェクト: yazshel/netbsd-kernel
bool
drmfb_shutdown(struct drmfb_softc *sc, int flags __unused)
{

	genfb_enable_polling(sc->sc_da.da_dev);
	return true;
}
コード例 #2
0
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);
	}
}
コード例 #3
0
ファイル: tegra_genfb.c プロジェクト: yazshel/netbsd-kernel
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);
	}
}
コード例 #4
0
static bool
awin_fb_shutdown(device_t self, int flags)
{
	genfb_enable_polling(self);
	return true;
}