Skip to content

Commit 3b802ea

Browse files
committed
v3.4
Fix NULL pointer dereference
1 parent 7df2e6f commit 3b802ea

3 files changed

Lines changed: 918 additions & 0 deletions

File tree

dkms/huawei-wmi-3.4/Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
obj-m := huawei-wmi.o
3+
KERN_SRC := /lib/modules/$(shell uname -r)/build/
4+
PWD := $(shell pwd)
5+
6+
modules:
7+
make -C $(KERN_SRC) M=$(PWD) modules
8+
9+
install:
10+
make -C $(KERN_SRC) M=$(PWD) modules_install
11+
depmod -a
12+
13+
clean:
14+
make -C $(KERN_SRC) M=$(PWD) clean

dkms/huawei-wmi-3.4/dkms.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
PACKAGE_NAME="huawei-wmi"
2+
PACKAGE_VERSION="3.4"
3+
BUILT_MODULE_NAME[0]="huawei-wmi"
4+
DEST_MODULE_LOCATION[0]="/kernel/drivers/platform/x86/"
5+
AUTOINSTALL="yes"

0 commit comments

Comments
 (0)