diff options
author | Nathan Chancellor <natechancellor@gmail.com> | 2020-05-16 00:33:18 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-05-16 01:32:27 +0200 |
commit | 2ea46dc6864261e94441e4d141058fc538d0de6b (patch) | |
tree | 1cbfec5b85c42dc84601de6c4da5358a8d3ab7a5 /drivers/net/ethernet/ti | |
parent | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net (diff) | |
download | linux-2ea46dc6864261e94441e4d141058fc538d0de6b.tar.xz linux-2ea46dc6864261e94441e4d141058fc538d0de6b.zip |
ethernet: ti: am65-cpts: Add missing inline qualifier to stub functions
When building with Clang:
In file included from drivers/net/ethernet/ti/am65-cpsw-ethtool.c:15:
drivers/net/ethernet/ti/am65-cpts.h:58:12: warning: unused function
'am65_cpts_ns_gettime' [-Wunused-function]
static s64 am65_cpts_ns_gettime(struct am65_cpts *cpts)
^
drivers/net/ethernet/ti/am65-cpts.h:63:12: warning: unused function
'am65_cpts_estf_enable' [-Wunused-function]
static int am65_cpts_estf_enable(struct am65_cpts *cpts,
^
drivers/net/ethernet/ti/am65-cpts.h:69:13: warning: unused function
'am65_cpts_estf_disable' [-Wunused-function]
static void am65_cpts_estf_disable(struct am65_cpts *cpts, int idx)
^
3 warnings generated.
These functions need to be marked as inline, which adds __maybe_unused,
to avoid these warnings, which is the pattern for stub functions.
Fixes: ec008fa2a9e5 ("ethernet: ti: am65-cpts: add routines to support taprio offload")
Link: https://github.com/ClangBuiltLinux/linux/issues/1026
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/ti')
-rw-r--r-- | drivers/net/ethernet/ti/am65-cpts.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ethernet/ti/am65-cpts.h b/drivers/net/ethernet/ti/am65-cpts.h index 98c1960b20b9..cf9fbc28fd03 100644 --- a/drivers/net/ethernet/ti/am65-cpts.h +++ b/drivers/net/ethernet/ti/am65-cpts.h @@ -55,18 +55,18 @@ static inline void am65_cpts_rx_enable(struct am65_cpts *cpts, bool en) { } -static s64 am65_cpts_ns_gettime(struct am65_cpts *cpts) +static inline s64 am65_cpts_ns_gettime(struct am65_cpts *cpts) { return 0; } -static int am65_cpts_estf_enable(struct am65_cpts *cpts, - int idx, struct am65_cpts_estf_cfg *cfg) +static inline int am65_cpts_estf_enable(struct am65_cpts *cpts, int idx, + struct am65_cpts_estf_cfg *cfg) { return 0; } -static void am65_cpts_estf_disable(struct am65_cpts *cpts, int idx) +static inline void am65_cpts_estf_disable(struct am65_cpts *cpts, int idx) { } #endif |