mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-06 23:36:59 +02:00
Errors reported by GCC 14.2 when enabling FPGA commands and drivers. Also many style fixes as reported by checkpatch.pl on the diffs. Most changes in stratixII.c which has been reorganized as well to avoid the top function prototypes. No functional changes. Signed-off-by: Pieter Van Trappen <pieter.van.trappen@cern.ch> Link: https://lore.kernel.org/r/20250708152455.1214487-4-vtpieter@gmail.com Signed-off-by: Michal Simek <michal.simek@amd.com>
14 lines
373 B
C
14 lines
373 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2007
|
|
* Eran Liberty, Extricom, eran.liberty@gmail.com
|
|
*/
|
|
#ifndef _STRATIXII_H_
|
|
#define _STRATIXII_H_
|
|
|
|
int StratixII_load(Altera_desc *desc, const void *buf, size_t size);
|
|
int StratixII_dump(Altera_desc *desc, const void *buf, size_t bsize);
|
|
int StratixII_info(Altera_desc *desc);
|
|
|
|
#endif /* _STRATIXII_H_ */
|