chan_sel_hal.c 420 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2020 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <os_common_api.h>
  7. #include <shell/shell.h>
  8. #include "chan_sel_hal.h"
  9. int chan_sel_device_inquiry(struct audio_chansel_data *data,char * dev_name)
  10. {
  11. struct device * chan_dev;
  12. int ret = 0;
  13. chan_dev = (struct device *)device_get_binding(dev_name);
  14. ret = audio_chan_sel(chan_dev, data);
  15. return ret;
  16. }