コード例 #1
0
ファイル: ec.c プロジェクト: canistation/coreboot
static void ene_kb3940q_init(struct device *dev)
{
	if (!dev->enabled)
		return;

	printk(BIOS_DEBUG, "Quanta EnE KB3940Q: Initializing keyboard.\n");
	pc_keyboard_init(NO_AUX_DEVICE);

	ene_kb3940q_log_events();
}
コード例 #2
0
ファイル: ec.c プロジェクト: hustcalm/coreboot-hacking
static void ene_kb3940q_init(device_t dev)
{
	struct ec_quanta_ene_kb3940q_config *conf = dev->chip_info;

	if (!dev->enabled)
		return;

	printk(BIOS_DEBUG, "Quanta EnE KB3940Q: Initializing keyboard.\n");
	pc_keyboard_init(&conf->keyboard);

	ene_kb3940q_log_events();
}