1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 22:58:08 +00:00

Merge pull request #474 from douliyang/patch-6

Fix a typo
This commit is contained in:
0xAX 2017-04-28 14:45:57 +06:00 committed by GitHub
commit 36916ad574

View File

@ -162,7 +162,7 @@ Note, that the `tick_device` structure contains two fields. The first field - `e
The second field of the `tick_device` structure represents mode of the `tick_device`. As we already know, the mode can be one of the: The second field of the `tick_device` structure represents mode of the `tick_device`. As we already know, the mode can be one of the:
```C ```C
num tick_device_mode { enum tick_device_mode {
TICKDEV_MODE_PERIODIC, TICKDEV_MODE_PERIODIC,
TICKDEV_MODE_ONESHOT, TICKDEV_MODE_ONESHOT,
}; };