.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * Helper functions for handling target threads/cpus |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2012, LG Electronics, Namhyung Kim <namhyung.kim@lge.com> |
---|
5 | | - * |
---|
6 | | - * Released under the GPL v2. |
---|
7 | 6 | */ |
---|
8 | 7 | |
---|
9 | 8 | #include "target.h" |
---|
10 | | -#include "util.h" |
---|
11 | | -#include "debug.h" |
---|
12 | 9 | |
---|
13 | 10 | #include <pwd.h> |
---|
| 11 | +#include <stdio.h> |
---|
| 12 | +#include <stdlib.h> |
---|
14 | 13 | #include <string.h> |
---|
15 | | - |
---|
| 14 | +#include <linux/kernel.h> |
---|
| 15 | +#include <linux/string.h> |
---|
16 | 16 | |
---|
17 | 17 | enum target_errno target__validate(struct target *target) |
---|
18 | 18 | { |
---|