mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
4101f68792
Use 'struct' instead of a typdef. Also since 'struct block_dev_desc' is long and causes 80-column violations, rename it to struct blk_desc. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Stephen Warren <swarren@nvidia.com>
17 lines
330 B
C
17 lines
330 B
C
#ifndef __SYSTEMACE_H
|
|
#define __SYSTEMACE_H
|
|
/*
|
|
* Copyright (c) 2004 Picture Elements, Inc.
|
|
* Stephen Williams (steve@picturel.com)
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifdef CONFIG_SYSTEMACE
|
|
|
|
# include <part.h>
|
|
|
|
struct blk_desc *systemace_get_dev(int dev);
|
|
|
|
#endif /* CONFIG_SYSTEMACE */
|
|
#endif /* __SYSTEMACE_H */
|