mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 21:46:47 +07:00
staging: tidspbridge: fix an erroneous removal of parentheses
Commit4a9fdbb
(staging: core: tiomap3430.c Fix line over 80 characters.) erroneously removed the parentheses around the function pointer leading to the following build error (when enabling the build of TI DSP/Bridge driver): drivers/staging/tidspbridge/core/tiomap3430.c: In function 'bridge_brd_monitor': drivers/staging/tidspbridge/core/tiomap3430.c:283:10: error: invalid type argument of unary '*' (have 'u32') make[3]: *** [drivers/staging/tidspbridge/core/tiomap3430.o] Error 1 Fix this build error properly. Fixes:4a9fdbb
(staging: core: tiomap3430.c Fix line over 80 characters.) Cc: Aybuke Ozdemir <aybuke.147@gmail.com> Cc: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> Cc: Omar Ramirez Luna <omar.ramirez@copitl.com> Signed-off-by: Suman Anna <s-anna@ti.com> Cc: stable <stable@vger.kernel.org> # 3.15 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a497c3ba1d
commit
ff4f58f0ca
@ -280,8 +280,10 @@ static int bridge_brd_monitor(struct bridge_dev_context *dev_ctxt)
|
||||
OMAP3430_IVA2_MOD, OMAP2_CM_CLKSTCTRL);
|
||||
|
||||
/* Wait until the state has moved to ON */
|
||||
while (*pdata->dsp_prm_read(OMAP3430_IVA2_MOD, OMAP2_PM_PWSTST)&
|
||||
OMAP_INTRANSITION_MASK);
|
||||
while ((*pdata->dsp_prm_read)(OMAP3430_IVA2_MOD,
|
||||
OMAP2_PM_PWSTST) &
|
||||
OMAP_INTRANSITION_MASK)
|
||||
;
|
||||
/* Disable Automatic transition */
|
||||
(*pdata->dsp_cm_write)(OMAP34XX_CLKSTCTRL_DISABLE_AUTO,
|
||||
OMAP3430_IVA2_MOD, OMAP2_CM_CLKSTCTRL);
|
||||
|
Loading…
Reference in New Issue
Block a user