summaryrefslogtreecommitdiff
path: root/include/linux/completion.h
AgeCommit message (Collapse)Author
2025-10-10include: completion.h: Convert the rest of the dummy functions to macrosTom Rini
While we declare some of our dummy functions as "inline" we do not also declare them as "static" and so it is possible for the compiler to decide to make these as global functions instead. This can lead to link time failures in some cases, such as "allyesconfig". As these are just dummy functions, convert them to a macro instead. Signed-off-by: Tom Rini <[email protected]>
2019-04-22compat linux: import completion from linux 4.18Philippe Reynes
This patch port the file include/linux/completion.h from linux 4.18 to u-boot. It define the structure but all the function are stubbed. Signed-off-by: Philippe Reynes <[email protected]>