19 lines
386 B
C
19 lines
386 B
C
|
/* SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause */
|
||
|
/*
|
||
|
* Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef _EFA_COMMON_H_
|
||
|
#define _EFA_COMMON_H_
|
||
|
|
||
|
#define EFA_COMMON_SPEC_VERSION_MAJOR 2
|
||
|
#define EFA_COMMON_SPEC_VERSION_MINOR 0
|
||
|
|
||
|
struct efa_common_mem_addr {
|
||
|
u32 mem_addr_low;
|
||
|
|
||
|
u32 mem_addr_high;
|
||
|
};
|
||
|
|
||
|
#endif /* _EFA_COMMON_H_ */
|