Rev 1721 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1721 | Rev 1740 | ||
|---|---|---|---|
| Line 7... | Line 7... | ||
| 7 | * (Based on libpci example.c written by Martin Mares.) |
7 | * (Based on libpci example.c written by Martin Mares.) |
| 8 | * |
8 | * |
| 9 | * Can be freely distributed and used under the terms of the GNU GPL. |
9 | * Can be freely distributed and used under the terms of the GNU GPL. |
| 10 | */ |
10 | */ |
| 11 | 11 | ||
| - | 12 | /** |
|
| - | 13 | * @addtogroup pci |
|
| - | 14 | * @{ |
|
| - | 15 | */ |
|
| - | 16 | ||
| 12 | #include <stdio.h> |
17 | #include <stdio.h> |
| 13 | #include <ddi.h> |
18 | #include <ddi.h> |
| 14 | #include <task.h> |
19 | #include <task.h> |
| 15 | #include <stdlib.h> |
20 | #include <stdlib.h> |
| 16 | #include <ipc/ipc.h> |
21 | #include <ipc/ipc.h> |
| Line 77... | Line 82... | ||
| 77 | } |
82 | } |
| 78 | 83 | ||
| 79 | pci_cleanup(pacc); |
84 | pci_cleanup(pacc); |
| 80 | return 0; |
85 | return 0; |
| 81 | } |
86 | } |
| - | 87 | ||
| - | 88 | /** |
|
| - | 89 | * @} |
|
| - | 90 | */ |
|