summaryrefslogtreecommitdiff
path: root/board/keyborg/debug.h
blob: a7ae4bfe8f3002cae9b63e68f0d2015894082b88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
/* GPIO UART debug printf */

#ifndef __BOARD_KEYBORG_DEBUG_H
#define __BOARD_KEYBORG_DEBUG_H

#ifdef CONFIG_DEBUG_PRINTF
void debug_printf(const char *format, ...);
#else
#define debug_printf(...)
#endif

#endif /* __BOARD_KEYBORG_DEBUG_H */