diff options
author | Dasky <32983009+daskygit@users.noreply.github.com> | 2022-02-05 14:29:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-05 14:29:15 +0000 |
commit | b1debfb12f76759e96619c98116c9c59617c727a (patch) | |
tree | 8f21590009ab2c546fb4457220848322ff9cd4c8 /common_features.mk | |
parent | 065f6eeb4e38748f685a99cfdbf6076694bd15ff (diff) |
Remove default pointing device driver. (#16190)
* remove custom as default
* add missing pointing_device_driver to rules.mk
* Update docs
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk index 7b1ee2e742..07e26a9446 100644 --- a/common_features.mk +++ b/common_features.mk @@ -109,7 +109,6 @@ ifeq ($(strip $(MOUSEKEY_ENABLE)), yes) endif VALID_POINTING_DEVICE_DRIVER_TYPES := adns5050 adns9800 analog_joystick cirque_pinnacle_i2c cirque_pinnacle_spi pmw3360 pmw3389 pimoroni_trackball custom -POINTING_DEVICE_DRIVER ?= custom ifeq ($(strip $(POINTING_DEVICE_ENABLE)), yes) ifeq ($(filter $(POINTING_DEVICE_DRIVER),$(VALID_POINTING_DEVICE_DRIVER_TYPES)),) $(call CATASTROPHIC_ERROR,Invalid POINTING_DEVICE_DRIVER,POINTING_DEVICE_DRIVER="$(POINTING_DEVICE_DRIVER)" is not a valid pointing device type) |