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/kernel.h>
10 #include <zephyr/sys/printk.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 
14 #include <zephyr/bluetooth/conn.h>
15 #include <zephyr/bluetooth/audio/media_proxy.h>
16 
mcp_server_init(void)17 int mcp_server_init(void)
18 {
19 	int err;
20 
21 	err = media_proxy_pl_init();
22 
23 	return err;
24 }
25