diff options
| author | Herve Codina <[email protected]> | 2024-09-05 09:22:15 +0200 |
|---|---|---|
| committer | Arnd Bergmann <[email protected]> | 2024-09-05 14:12:15 +0000 |
| commit | dc2b17fbd599caa6079d619e1ff2c3d980ff6603 (patch) | |
| tree | dbaf8d5b9e51666bbec3f72cb229bbe1105a0543 | |
| parent | be5ea8f3e37669ab4eec280d55c437c513a7d87c (diff) | |
soc: fsl: qe: ucc: Export ucc_mux_set_grant_tsa_bkpt
When TSA is compiled as module the following error is reported:
"ucc_mux_set_grant_tsa_bkpt" [drivers/soc/fsl/qe/tsa.ko] undefined!
Indeed, the ucc_mux_set_grant_tsa_bkpt symbol is not exported.
Simply export ucc_mux_set_grant_tsa_bkpt.
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Signed-off-by: Herve Codina <[email protected]>
Acked-by: Christophe Leroy <[email protected]>
Signed-off-by: Arnd Bergmann <[email protected]>
| -rw-r--r-- | drivers/soc/fsl/qe/ucc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/soc/fsl/qe/ucc.c b/drivers/soc/fsl/qe/ucc.c index 21dbcd787cd5..892aa5931d5b 100644 --- a/drivers/soc/fsl/qe/ucc.c +++ b/drivers/soc/fsl/qe/ucc.c @@ -114,6 +114,7 @@ int ucc_mux_set_grant_tsa_bkpt(unsigned int ucc_num, int set, u32 mask) return 0; } +EXPORT_SYMBOL(ucc_mux_set_grant_tsa_bkpt); int ucc_set_qe_mux_rxtx(unsigned int ucc_num, enum qe_clock clock, enum comm_dir mode) |