mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
8d6f2d359e
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>
5 lines
123 B
C++
5 lines
123 B
C++
/* Aliases must be in driver files */
|
|
U_BOOT_DRIVER(sandbox_gpio) {
|
|
};
|
|
|
|
DM_DRIVER_ALIAS(sandbox_gpio, sandbox_gpio_alias2)
|