1 /*
2  * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include "esp_private/io_mux.h"
8 
io_mux_set_clock_source(soc_module_clk_t clk_src)9 esp_err_t io_mux_set_clock_source(soc_module_clk_t clk_src)
10 {
11     // IO MUX clock source is not selectable
12     return ESP_OK;
13 }
14