Fix earlier blunder an update readme

This commit is contained in:
ed 2018-12-16 18:51:53 +00:00
parent 88b8819154
commit 8e7079ccc1
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,9 @@
# Linux ASUS WMI Sensor driver.
## General info
Provides a Linux kernel module "asus_wmi_sensors" that provides sensor readouts via ASUS' WMI interface present in the UEFI of some recent Ryzen motherboards.
## Supported hardware
- Asus ROG Crosshair Hero VII (WiFi).
@ -15,11 +19,10 @@
- Reports all sensor names identically to in the UEFI firmware
- Scaling performed in-driver
## How to install
### Arch Linux
Available as an AUR package - https://aur.archlinux.org/packages/asus-wmi-sensors-dkms-git/
## FAQ

View File

@ -449,7 +449,7 @@ static int is_board_supported(void) {
strcmp(board_name, CROSSHAIR_7_WIFI) == 0 ||
strcmp(board_name, CROSSHAIR_7) == 0 ||
strcmp(board_name, CROSSHAIR_6_WIFI) == 0 ||
strcmp(board_name, CROSSHAIR_6) == 0)
strcmp(board_name, CROSSHAIR_6) == 0 ||
strcmp(board_name, ZENITH_EXTREME) == 0))) {
pr_debug("Supported board");