1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-02-21 19:42:00 +00:00

Correct it's -> its

This commit is contained in:
Michael Aquilina 2015-10-04 23:06:16 +01:00
parent a1d39790f0
commit b0673e7a06

View File

@ -124,7 +124,7 @@ In the next step after the device is created with the `device_create` function,
list_add(&misc->list, &misc_list);
```
Kernel `list.h` provides this API for the addition of a new entry to the list. Let's look at it's implementation:
Kernel `list.h` provides this API for the addition of a new entry to the list. Let's look at its implementation:
```C
static inline void list_add(struct list_head *new, struct list_head *head)