soc: ti: pruss: Fix pruss APIs

PRUSS APIs in pruss_driver.h produce lots of compilation errors when
CONFIG_TI_PRUSS is not set.

The errors and warnings,
warning: returning 'void *' from a function with return type 'int' makes
integer from pointer without a cast [-Wint-conversion]
error: expected identifier or '(' before '{' token

Fix these warnings and errors by fixing the return type of pruss APIs as
well as removing the misplaced semicolon from pruss_cfg_xfr_enable()

Fixes: 0211cc1e4fbb ("soc: ti: pruss: Add helper functions to set GPI mode, MII_RT_event and XFR")
Signed-off-by: MD Danish Anwar <danishanwar@ti.com>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
Link: https://lore.kernel.org/r/20241220100508.1554309-2-danishanwar@ti.com
Signed-off-by: Nishanth Menon <nm@ti.com>

authored by MD Danish Anwar and committed by Nishanth Menon 202580b6 40384c84

Changed files
+6 -6
include
+6 -6
include/linux/pruss_driver.h
··· 144 144 static inline int pruss_cfg_get_gpmux(struct pruss *pruss, 145 145 enum pruss_pru_id pru_id, u8 *mux) 146 146 { 147 - return ERR_PTR(-EOPNOTSUPP); 147 + return -EOPNOTSUPP; 148 148 } 149 149 150 150 static inline int pruss_cfg_set_gpmux(struct pruss *pruss, 151 151 enum pruss_pru_id pru_id, u8 mux) 152 152 { 153 - return ERR_PTR(-EOPNOTSUPP); 153 + return -EOPNOTSUPP; 154 154 } 155 155 156 156 static inline int pruss_cfg_gpimode(struct pruss *pruss, 157 157 enum pruss_pru_id pru_id, 158 158 enum pruss_gpi_mode mode) 159 159 { 160 - return ERR_PTR(-EOPNOTSUPP); 160 + return -EOPNOTSUPP; 161 161 } 162 162 163 163 static inline int pruss_cfg_miirt_enable(struct pruss *pruss, bool enable) 164 164 { 165 - return ERR_PTR(-EOPNOTSUPP); 165 + return -EOPNOTSUPP; 166 166 } 167 167 168 168 static inline int pruss_cfg_xfr_enable(struct pruss *pruss, 169 169 enum pru_type pru_type, 170 - bool enable); 170 + bool enable) 171 171 { 172 - return ERR_PTR(-EOPNOTSUPP); 172 + return -EOPNOTSUPP; 173 173 } 174 174 175 175 #endif /* CONFIG_TI_PRUSS */