Re: [PATCH v2 2/3] drivers: avoid using aliases on drivers when OF_PLATDATA is enabled

2020-07-28 Thread Simon Glass
Hi Walter, On Wed, 22 Jul 2020 at 21:22, Walter Lozano wrote: > > After latest improvements on OF_PLATDATA struct names are generated > based on driver name instead of compatible strings. With this in mind, > using aliases in drivers are not longer needed. > > This patch removes code that tried t

Re: [PATCH v2 2/3] drivers: avoid using aliases on drivers when OF_PLATDATA is enabled

2020-07-26 Thread Simon Glass
Hi Walter, On Wed, 22 Jul 2020 at 21:22, Walter Lozano wrote: > > After latest improvements on OF_PLATDATA struct names are generated > based on driver name instead of compatible strings. With this in mind, > using aliases in drivers are not longer needed. > > This patch removes code that tried t

[PATCH v2 2/3] drivers: avoid using aliases on drivers when OF_PLATDATA is enabled

2020-07-22 Thread Walter Lozano
After latest improvements on OF_PLATDATA struct names are generated based on driver name instead of compatible strings. With this in mind, using aliases in drivers are not longer needed. This patch removes code that tried to handle these kind of aliases to improve readability. Signed-off-by: Walt