diff options
author | Anthony Wang | 2022-03-10 07:30:47 -0600 |
---|---|---|
committer | GitHub | 2022-03-10 07:30:47 -0600 |
commit | ccc7d9e2d128055387ea1ca241f562a37e5ea7e0 (patch) | |
tree | a8c4b504d5aa69fa2ffe2794f02cd48468e84145 | |
parent | 27eb87fb058dbf10d46133d5aa563986fc9db196 (diff) | |
parent | 184c4c7797a8e1f63f6649645dd31d975e9c4d3f (diff) |
Merge pull request #9 from axelgenus/master
Fixed fall-through warning/error.
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,8 @@ VERSION := 0.2.0 TARGET := $(shell uname -r) DKMS_ROOT_PATH := /usr/src/zenpower-$(VERSION) +KBUILD_CFLAGS += -Wimplicit-fallthrough=3 + KERNEL_MODULES := /lib/modules/$(TARGET) ifneq ("","$(wildcard /usr/src/linux-headers-$(TARGET)/*)") |