Merge "msm: ipa: Adapt IPA driver to several DLKMs"

This commit is contained in:
qctecmdr
2019-11-21 07:44:37 -08:00
committed by Gerrit - the friendly Code Review server
38 changed files with 341 additions and 292 deletions

View File

@@ -1067,7 +1067,7 @@ struct gsi_chan_info {
uint64_t evt_rp;
};
#ifdef CONFIG_GSI
#if IS_ENABLED(CONFIG_GSI)
/**
* gsi_register_device - Peripheral should call this function to
* register itself with GSI before invoking any other APIs
@@ -1685,7 +1685,7 @@ int gsi_alloc_channel_ee(unsigned int chan_idx, unsigned int ee, int *code);
* gsi_deregister_device
*
*/
#else
#else /* IS_ENABLED(CONFIG_GSI) */
static inline int gsi_register_device(struct gsi_per_props *props,
unsigned long *dev_hdl)
{
@@ -1937,5 +1937,5 @@ static inline void gsi_wdi3_dump_register(unsigned long chan_hdl)
{
}
#endif
#endif /* IS_ENABLED(CONFIG_GSI) */
#endif