1/*
2 * Copyright 2022, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5
6#include <sys/haiku-module.h>
7
8
9HAIKU_FBSD_WLAN_DRIVER_GLUE(iaxwifi200, iwx, pci)
10NO_HAIKU_FBSD_MII_DRIVER();
11NO_HAIKU_REENABLE_INTERRUPTS();
12HAIKU_DRIVER_REQUIREMENTS(OBSD_WLAN);
13HAIKU_FIRMWARE_VERSION(0);
14NO_HAIKU_FIRMWARE_NAME_MAP();
15
16
17int
18HAIKU_CHECK_DISABLE_INTERRUPTS(device_t dev)
19{
20	// We only support MSI(-X), so we handle all interrupts.
21	return 1;
22}
23