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
main(void)10 int main(void)
11 {
12 return 0;
13 }
14