diff options
author | Igor Grinberg <grinberg@compulab.co.il> | 2014-11-03 11:32:18 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-06 11:04:40 -0500 |
commit | a937fd1682625b1f87b555e2af9117fcb2999d7c (patch) | |
tree | 6f39f972c9387f7af48fde11ecc941829debba62 /board/compulab/common/common.h | |
parent | 52d848695c36d2b6ce688d1403653653e82583b4 (diff) | |
download | u-boot-imx-a937fd1682625b1f87b555e2af9117fcb2999d7c.zip u-boot-imx-a937fd1682625b1f87b555e2af9117fcb2999d7c.tar.gz u-boot-imx-a937fd1682625b1f87b555e2af9117fcb2999d7c.tar.bz2 |
compulab: refactor board revision handling
Move board revision handling code to a common location
for further reuse.
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/compulab/common/common.h')
-rw-r--r-- | board/compulab/common/common.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/board/compulab/common/common.h b/board/compulab/common/common.h new file mode 100644 index 0000000..316ee4c --- /dev/null +++ b/board/compulab/common/common.h @@ -0,0 +1,14 @@ +/* + * (C) Copyright 2014 CompuLab, Ltd. <www.compulab.co.il> + * + * Authors: Igor Grinberg <grinberg@compulab.co.il> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef _CL_COMMON_ +#define _CL_COMMON_ + +void cl_print_pcb_info(void); + +#endif /* _CL_COMMON_ */ |