• Pierre-Louis Bossart's avatar
    ASoC: SOF: Intel: bdw: fix operator precedence warnings · 7ad03a2c
    Pierre-Louis Bossart authored
    Address cppcheck warnings
    
    sound/soc/sof/intel/bdw.c:265:26: style: Clarify calculation precedence
    for '&' and '?'. [clarifyCalculation]
      panic & SHIM_IPCX_BUSY ? "yes" : "no",
                             ^
    
    sound/soc/sof/intel/bdw.c:266:26: style: Clarify calculation
    precedence for '&' and '?'. [clarifyCalculation]
      panic & SHIM_IPCX_DONE ? "yes" : "no", panic);
                             ^
    
    sound/soc/sof/intel/bdw.c:269:25: style: Clarify calculation
    precedence for '&' and '?'. [clarifyCalculation]
      imrx & SHIM_IMRX_BUSY ? "yes" : "no",
                            ^
    
    sound/soc/sof/intel/bdw.c:270:25: style: Clarify calculation
    precedence for '&' and '?'. [clarifyCalculation]
      imrx & SHIM_IMRX_DONE ? "yes" : "no", imrx);
                            ^
    
    sound/soc/sof/intel/bdw.c:273:27: style: Clarify calculation
    precedence for '&' and '?'. [clarifyCalculation]
      status & SHIM_IPCD_BUSY ? "yes" : "no",
                              ^
    
    sound/soc/sof/intel/bdw.c:274:27: style: Clarify calculation
    precedence for '&' and '?'. [clarifyCalculation]
      status & SHIM_IPCD_DONE ? "yes" : "no", status);
                              ^
    
    sound/soc/sof/intel/bdw.c:277:25: style: Clarify calculation
    precedence for '&' and '?'. [clarifyCalculation]
      imrd & SHIM_IMRD_BUSY ? "yes" : "no",
                            ^
    
    sound/soc/sof/intel/bdw.c:278:25: style: Clarify calculation
    precedence for '&' and '?'. [clarifyCalculation]
      imrd & SHIM_IMRD_DONE ? "yes" : "no", imrd);
                            ^
    
    Fixes: 3a9e204d ("ASoC: SOF: Intel: Add context data to any IPC timeout.")
    Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
    Link: https://lore.kernel.org/r/20191011164312.7988-3-pierre-louis.bossart@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
    7ad03a2c
bdw.c 15.8 KB