Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / u_boot_binman_embed_sm.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2021 Google LLC
4  *
5  * Simple program to embed a devicetree. This is used by binman tests.
6  */
7
8 int __attribute__((section(".mydtb"))) dtb_data[16];
9
10 int main(void)
11 {
12         return 0;
13 }