Message ID | 20170115211215.17216-3-mcgrof@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Sun, Jan 15, 2017 at 01:12:11PM -0800, Luis R. Rodriguez wrote: > Start off with just __ref -- we enalbe you to override, if you do > that then you can define your own. I have no idea what this means, do you? > The way you'd use this, if you > do override, is define your own __ref and then use include_next. Huh? Again, please be more specific or clear or something, I have no idea again what this patch is for. thanks, greg k-h
diff --git a/tools/include/linux/init.h b/tools/include/linux/init.h new file mode 100644 index 000000000000..6d970a360a05 --- /dev/null +++ b/tools/include/linux/init.h @@ -0,0 +1,9 @@ +#ifndef _TOOLS_LINUX_INIT_H +#define _TOOLS_LINUX_INIT_H + +/* this means you can add your own to fit you own userspace needs */ +#ifndef __ref +#define __ref +#endif + +#endif /* _TOOLS_LINUX_INIT_H */
Start off with just __ref -- we enalbe you to override, if you do that then you can define your own. The way you'd use this, if you do override, is define your own __ref and then use include_next. Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org> --- tools/include/linux/init.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tools/include/linux/init.h