u-boot-brain/tools/dtoc/test/dtoc_test_scan_drivers.cxx
Simon Glass 8d6f2d359e dtoc: Process driver aliases along with drivers
Instead of using a separate step for this processing, handle it while
scanning its associated driver. This allows us to drop the code coverage
exception in this case.

Note that only files containing drivers are scanned by dtoc, so aliases
declared in a file that doesn't hold a driver will not be noticed. It
would be confusing to put them anywhere other than in the driver that they
relate to, but update the documentation to say this explicitly, just in
case.

Signed-off-by: Simon Glass <sjg@chromium.org>
2021-03-22 19:23:27 +13:00

6 lines
123 B
C++

/* Aliases must be in driver files */
U_BOOT_DRIVER(sandbox_gpio) {
};
DM_DRIVER_ALIAS(sandbox_gpio, sandbox_gpio_alias2)