diff options
| author | Andy Shevchenko <[email protected]> | 2024-03-01 20:00:05 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2024-03-07 22:07:20 +0000 |
| commit | bbf6cfba49a117c502ec5df66d3ab3b485c113f8 (patch) | |
| tree | ba6ef5ad91d2108df53810e4c9f70634f126291b /include/linux | |
| parent | 1fe6e4f0b0c47e70735066e889f97c3c6e1e79b2 (diff) | |
driver core: Drop unneeded 'extern' keyword in fwnode.h
We do not use 'extern' keyword with functions. Remove the last one
mistakenly added to fwnode.h.
Reviewed-by: Sakari Ailus <[email protected]>
Acked-by: Saravana Kannan <[email protected]>
Acked-by: "Rafael J. Wysocki" <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/fwnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fwnode.h b/include/linux/fwnode.h index 2a72f55d26eb..2d23a14857c7 100644 --- a/include/linux/fwnode.h +++ b/include/linux/fwnode.h @@ -209,9 +209,9 @@ static inline void fwnode_dev_initialized(struct fwnode_handle *fwnode, fwnode->flags &= ~FWNODE_FLAG_INITIALIZED; } -extern bool fw_devlink_is_strict(void); int fwnode_link_add(struct fwnode_handle *con, struct fwnode_handle *sup); void fwnode_links_purge(struct fwnode_handle *fwnode); void fw_devlink_purge_absent_suppliers(struct fwnode_handle *fwnode); +bool fw_devlink_is_strict(void); #endif |