sp_params.h 363 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __SP_PARAMS_H__
  6. #define __SP_PARAMS_H__
  7. #if IS_ENABLED(CONFIG_XT_LOGGING)
  8. int afe_get_sp_xt_logging_data(u16 port_id);
  9. #else
  10. static inline int afe_get_sp_xt_logging_data(u16 port_id)
  11. {
  12. return 0;
  13. }
  14. #endif
  15. #endif /* __SP_PARAMS_H__ */