svn commit: r326019 - head/sys/dev/evdev

Vladimir Kondratyev wulf at FreeBSD.org
Mon Nov 20 19:17:45 UTC 2017


Author: wulf
Date: Mon Nov 20 19:17:43 2017
New Revision: 326019
URL: https://svnweb.freebsd.org/changeset/base/326019

Log:
  evdev: Export EVDEV_SUPPORT kernel option through feature facility
  
  Suggested by:	netchild
  Reviewed by:	gonzo
  Approved by:	gonzo (mentor)
  MFC after:	1 week

Modified:
  head/sys/dev/evdev/evdev.c

Modified: head/sys/dev/evdev/evdev.c
==============================================================================
--- head/sys/dev/evdev/evdev.c	Mon Nov 20 19:05:53 2017	(r326018)
+++ head/sys/dev/evdev/evdev.c	Mon Nov 20 19:17:43 2017	(r326019)
@@ -50,6 +50,9 @@
 
 #ifdef FEATURE
 FEATURE(evdev, "Input event devices support");
+#ifdef EVDEV_SUPPORT
+FEATURE(evdev_support, "Evdev support in hybrid drivers");
+#endif
 #endif
 
 enum evdev_sparse_result


More information about the svn-src-all mailing list