mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
17 lines
317 B
C
17 lines
317 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Texas Instruments' K3 DDRSS Driver
|
||
|
*
|
||
|
* Copyright (C) 2021-2022 Texas Instruments Incorporated - https://www.ti.com/
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _K3_DDRSS_
|
||
|
#define _K3_DDRSS_
|
||
|
|
||
|
struct udevice;
|
||
|
|
||
|
int k3_ddrss_ddr_fdt_fixup(struct udevice *dev, void *blob, struct bd_info *bd);
|
||
|
|
||
|
#endif
|