commit | 14864d6cd47d082a0aacaf2da00af206fa0ad4f6 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | Sun Jul 14 11:30:23 2019 +0200 |
committer | Tom Rini <trini@konsulko.com> | Wed Jul 24 14:15:36 2019 -0400 |
tree | 6bfc10d1a371c4d2d5556e738f1835c230783118 | |
parent | 2b0a6ea821eceec682824c0c9326b7051bb9a418 [diff] |
scripts/kernel-doc: fix parsing of function pointers kernel-doc fails to parse function definitions like the one below efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl, void (EFIAPI *notify_function) ( struct efi_event *event, void *context), void *notify_context, efi_guid_t *group, struct efi_event **event) { due to the "EFIAPI" attribute preceding the function name. cf. https://lkml.org/lkml/2018/9/3/1185 Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>