
Change license to BSD-3-Clause Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
15 lines
189 B
C
15 lines
189 B
C
/*
|
|
* Copyright(c) 2019-2021 Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef __DATA_H__
|
|
#define __DATA_H__
|
|
|
|
struct volume_data {
|
|
void *ptr;
|
|
int offset;
|
|
};
|
|
|
|
#endif
|