Re: [PATCH v2 1/3] PCI: imx6: Use enum instead of bool for variant indicator

2016-04-18 Thread Lucas Stach
Am Sonntag, den 17.04.2016, 22:51 -0700 schrieb Andrey Smirnov: > Use enumerated type instead of a boolean flag to specify the variant of > the PCIe IP block (6Q, 6SX, etc). This patch has zero functional impact, > however it makes the code easier to extend for the case of more than 2 > possible va

[PATCH v2 1/3] PCI: imx6: Use enum instead of bool for variant indicator

2016-04-17 Thread Andrey Smirnov
Use enumerated type instead of a boolean flag to specify the variant of the PCIe IP block (6Q, 6SX, etc). This patch has zero functional impact, however it makes the code easier to extend for the case of more than 2 possible variants of an IP block (of which there are). Signed-off-by: Andrey Smirn