Skip to content

Commit 3beae49

Browse files
authored
Merge pull request #145 from linD026/master
Introduce Virtual Input Device Driver
2 parents 413c7d5 + 636c1e7 commit 3beae49

File tree

11 files changed

+656
-2
lines changed

11 files changed

+656
-2
lines changed

.ci/non-working

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
bottomhalf
22
intrpt
3+
vkbd

.mailmap

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ Jim Huang <[email protected]> Jim Huang <[email protected]>
55
Jim Huang <[email protected]> Jim Huang <[email protected]>
66
77
8-
8+
9+
mengxinayan <[email protected]> 萌新阿岩 <[email protected]>

contrib.tex

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
Arush Sharma, % <[email protected]>
44
asas1asas200, % <[email protected]>
55
Benno Bielmeier, % <[email protected]>
6+
Bob Lee, % <[email protected]>
67
Brad Baker, % <[email protected]>
78
ccs100203, % <[email protected]>
89
Chih-Yu Chen, % <[email protected]>
10+
Ching-Hua (Vivian) Lin, % <[email protected]>
911
ChinYikMing, % <[email protected]>
1012
Cyril Brulebois, % <[email protected]>
1113
Daniele Paolo Scarpazza, % <>
@@ -22,10 +24,15 @@
2224
Ignacio Martin, % <>
2325
JianXing Wu, % <[email protected]>
2426
linD026, % <[email protected]>
27+
28+
manbing, % <[email protected]>
2529
Marconi Jiang, % <[email protected]>
30+
mengxinayan, % <[email protected]>
2631
RinHizakura, % <[email protected]>
2732
Roman Lakeev, % <>
2833
Stacy Prowell, % <[email protected]>
34+
Steven Lung, % <[email protected]>
35+
Tristan Lelong, % <[email protected]>
2936
Tucker Polomik, % <[email protected]>
3037
VxTeemo, % <[email protected]>
3138
Wei-Lun Tsai, % <[email protected]>

examples/.clang-format

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ DisableFormat: false
5656
ExperimentalAutoDetectBinPacking: false
5757
FixNamespaceComments: false
5858

59+
ForEachMacros:
60+
- 'list_for_each'
61+
- 'list_for_each_safe'
62+
5963
IncludeBlocks: Preserve
6064
IncludeCategories:
6165
- Regex: '.*'

examples/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ obj-m += example_atomic.o
2929
obj-m += example_mutex.o
3030
obj-m += bottomhalf.o
3131
obj-m += ioctl.o
32+
obj-m += vinput.o
33+
obj-m += vkbd.o
3234

3335
PWD := $(CURDIR)
3436

0 commit comments

Comments
 (0)