spi_bus_lock_bg_exit() function
				 Handle the scheduling of other acquiring devices, and control of HW operation  status.  If no BG request is found, call with `wip=false`. This function will return false,  indicating there is incoming BG requests for the current acquiring device (or  for all devices if there is no acquiring device) and the ISR needs retry.  Otherwise may schedule a new acquiring processor (unblock the task) if there  is, and return true.  Otherwise if a BG request is started in this ISR, call with `wip=true` and the  function will enable the interrupt to make the ISR be called again when the  request is done.  This function is safe and should still be called when the ISR just lost its acquiring processor  role, but hasn't quit.
				 												Arguments
wip
Whether an operation is being executed when quitting the ISR.
Return value
false if retry is required, indicating that there is pending BG request. otherwise true and quit ISR is allowed.
Notes
This function will not change acquiring device. The ISR call `spi_bus_lock_bg_update_acquiring` to check for new acquiring device, when acquiring devices need to be served before other devices.