1 /** @file
2  *  @brief Bluetooth Media Control Profile (MCP) Server role.
3  *
4  *  Copyright 2023 NXP
5  *
6  *  SPDX-License-Identifier: Apache-2.0
7  */
8 
9 #include <zephyr/bluetooth/conn.h>
10 #include <zephyr/bluetooth/audio/media_proxy.h>
11 #include <zephyr/kernel.h>
12 #include <zephyr/sys/printk.h>
13 
mcp_server_init(void)14 int mcp_server_init(void)
15 {
16 	int err;
17 
18 	err = media_proxy_pl_init();
19 
20 	return err;
21 }
22