blob: 072bed52f1778f52e3b0b6d8bf54019f5e619bab [file] [log] [blame]
Venkatesh Yadav Abbarapuf80014d2020-11-27 02:58:24 -07001/*
2 * Copyright (c) 2021, Xilinx Inc.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef DCC_H
8#define DCC_H
9
10#include <stdint.h>
11#include <drivers/console.h>
12
13/*
14 * Initialize a new dcc console instance and register it with the console
15 * framework.
16 */
17int console_dcc_register(void);
Prasad Kummarif006e952023-09-19 22:35:08 +053018void console_dcc_unregister(void);
Venkatesh Yadav Abbarapuf80014d2020-11-27 02:58:24 -070019
20#endif /* DCC */