diff options
| author | Simon Glass <[email protected]> | 2025-05-15 17:31:34 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-05-29 08:30:25 -0600 |
| commit | 0b9450989c195430521b01d97ba79a9b644119a6 (patch) | |
| tree | b7d4b0418c2be6ad56a4461b3f98fc6cf082ee01 /include | |
| parent | 84a1c99055166857efabe55277f01341404e8dda (diff) | |
net: Include string.h in net-legacy.h
This file uses memcpy() but does not include the header file. Update it.
Reviewed-by: Jerome Forissier <[email protected]>
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net-legacy.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net-legacy.h b/include/net-legacy.h index 51780999a88..a7dbcec1506 100644 --- a/include/net-legacy.h +++ b/include/net-legacy.h @@ -17,6 +17,7 @@ #include <log.h> #include <time.h> #include <linux/if_ether.h> +#include <linux/string.h> struct bd_info; struct cmd_tbl; |
