mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-05 02:51:00 +00:00
5654ffa8f1
This patch targets the last remaining commands left to sync to their latest form - mainly the mc_get_version() API. Besides this, remove any macro which is now of no help. Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
20 lines
409 B
C
20 lines
409 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/* Copyright 2013-2016 Freescale Semiconductor, Inc.
|
|
* Copyright 2017, 2023 NXP
|
|
*/
|
|
#ifndef __FSL_DPMNG_CMD_H
|
|
#define __FSL_DPMNG_CMD_H
|
|
|
|
/* Command IDs */
|
|
#define DPMNG_CMDID_GET_VERSION 0x8311
|
|
|
|
#pragma pack(push, 1)
|
|
struct dpmng_rsp_get_version {
|
|
__le32 revision;
|
|
__le32 version_major;
|
|
__le32 version_minor;
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
#endif /* __FSL_DPMNG_CMD_H */
|