* [U-Boot] [PATCH 1/2] spi: bfin_spi: Remove unnecessary test for bus and pins[bus]
@ 2013-11-30 3:38 Axel Lin
2013-11-30 3:40 ` [U-Boot] [PATCH 2/2] spi: bfin_spi6xx: " Axel Lin
2013-12-02 3:42 ` [U-Boot] [PATCH 1/2] spi: bfin_spi: " Scott Jiang
0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2013-11-30 3:38 UTC (permalink / raw)
To: u-boot
For invalid bus number, current code returns NULL in the default case of
switch-case statements. In additional, pins[bus] is always not NULL because
it is the address of specific row of the two-dimensional array.
Thus this patch removes these unnecessary test.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
Also adjust the code position to avoid checkpatch.pl warning:
ERROR: trailing statements should be on next line
drivers/spi/bfin_spi.c | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/drivers/spi/bfin_spi.c b/drivers/spi/bfin_spi.c
index bb88f30..aa89d89 100644
--- a/drivers/spi/bfin_spi.c
+++ b/drivers/spi/bfin_spi.c
@@ -162,21 +162,22 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
if (!spi_cs_is_valid(bus, cs))
return NULL;
- if (bus >= ARRAY_SIZE(pins) || pins[bus] == NULL) {
- debug("%s: invalid bus %u\n", __func__, bus);
- return NULL;
- }
switch (bus) {
#ifdef SPI0_CTL
- case 0: mmr_base = SPI0_CTL; break;
+ case 0:
+ mmr_base = SPI0_CTL; break;
#endif
#ifdef SPI1_CTL
- case 1: mmr_base = SPI1_CTL; break;
+ case 1:
+ mmr_base = SPI1_CTL; break;
#endif
#ifdef SPI2_CTL
- case 2: mmr_base = SPI2_CTL; break;
+ case 2:
+ mmr_base = SPI2_CTL; break;
#endif
- default: return NULL;
+ default:
+ debug("%s: invalid bus %u\n", __func__, bus);
+ return NULL;
}
bss = spi_alloc_slave(struct bfin_spi_slave, bus, cs);
--
1.8.1.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] spi: bfin_spi6xx: Remove unnecessary test for bus and pins[bus]
2013-11-30 3:38 [U-Boot] [PATCH 1/2] spi: bfin_spi: Remove unnecessary test for bus and pins[bus] Axel Lin
@ 2013-11-30 3:40 ` Axel Lin
2013-12-02 3:43 ` Scott Jiang
2013-12-02 3:42 ` [U-Boot] [PATCH 1/2] spi: bfin_spi: " Scott Jiang
1 sibling, 1 reply; 4+ messages in thread
From: Axel Lin @ 2013-11-30 3:40 UTC (permalink / raw)
To: u-boot
For invalid bus number, current code returns NULL in the default case of
switch-case statements. In additional, pins[bus] is always not NULL because
it is the address of specific row of the two-dimensional array.
Thus this patch removes these unnecessary test.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
drivers/spi/bfin_spi6xx.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/spi/bfin_spi6xx.c b/drivers/spi/bfin_spi6xx.c
index c25c4a9..07b833d 100644
--- a/drivers/spi/bfin_spi6xx.c
+++ b/drivers/spi/bfin_spi6xx.c
@@ -154,10 +154,6 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
if (!spi_cs_is_valid(bus, cs))
return NULL;
- if (bus >= ARRAY_SIZE(pins) || pins[bus] == NULL) {
- debug("%s: invalid bus %u\n", __func__, bus);
- return NULL;
- }
switch (bus) {
#ifdef SPI0_REGBASE
case 0:
@@ -175,6 +171,7 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
break;
#endif
default:
+ debug("%s: invalid bus %u\n", __func__, bus);
return NULL;
}
--
1.8.1.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 1/2] spi: bfin_spi: Remove unnecessary test for bus and pins[bus]
2013-11-30 3:38 [U-Boot] [PATCH 1/2] spi: bfin_spi: Remove unnecessary test for bus and pins[bus] Axel Lin
2013-11-30 3:40 ` [U-Boot] [PATCH 2/2] spi: bfin_spi6xx: " Axel Lin
@ 2013-12-02 3:42 ` Scott Jiang
1 sibling, 0 replies; 4+ messages in thread
From: Scott Jiang @ 2013-12-02 3:42 UTC (permalink / raw)
To: u-boot
2013/11/30 Axel Lin <axel.lin@ingics.com>:
> For invalid bus number, current code returns NULL in the default case of
> switch-case statements. In additional, pins[bus] is always not NULL because
> it is the address of specific row of the two-dimensional array.
> Thus this patch removes these unnecessary test.
>
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
> Also adjust the code position to avoid checkpatch.pl warning:
> ERROR: trailing statements should be on next line
>
> drivers/spi/bfin_spi.c | 17 +++++++++--------
> 1 file changed, 9 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/spi/bfin_spi.c b/drivers/spi/bfin_spi.c
> index bb88f30..aa89d89 100644
> --- a/drivers/spi/bfin_spi.c
> +++ b/drivers/spi/bfin_spi.c
> @@ -162,21 +162,22 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
> if (!spi_cs_is_valid(bus, cs))
> return NULL;
>
> - if (bus >= ARRAY_SIZE(pins) || pins[bus] == NULL) {
> - debug("%s: invalid bus %u\n", __func__, bus);
> - return NULL;
> - }
> switch (bus) {
> #ifdef SPI0_CTL
> - case 0: mmr_base = SPI0_CTL; break;
> + case 0:
> + mmr_base = SPI0_CTL; break;
> #endif
> #ifdef SPI1_CTL
> - case 1: mmr_base = SPI1_CTL; break;
> + case 1:
> + mmr_base = SPI1_CTL; break;
> #endif
> #ifdef SPI2_CTL
> - case 2: mmr_base = SPI2_CTL; break;
> + case 2:
> + mmr_base = SPI2_CTL; break;
> #endif
> - default: return NULL;
> + default:
> + debug("%s: invalid bus %u\n", __func__, bus);
> + return NULL;
> }
>
> bss = spi_alloc_slave(struct bfin_spi_slave, bus, cs);
> --
Acked-by: Scott Jiang <scott.jiang.linux@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] spi: bfin_spi6xx: Remove unnecessary test for bus and pins[bus]
2013-11-30 3:40 ` [U-Boot] [PATCH 2/2] spi: bfin_spi6xx: " Axel Lin
@ 2013-12-02 3:43 ` Scott Jiang
0 siblings, 0 replies; 4+ messages in thread
From: Scott Jiang @ 2013-12-02 3:43 UTC (permalink / raw)
To: u-boot
2013/11/30 Axel Lin <axel.lin@ingics.com>:
> For invalid bus number, current code returns NULL in the default case of
> switch-case statements. In additional, pins[bus] is always not NULL because
> it is the address of specific row of the two-dimensional array.
> Thus this patch removes these unnecessary test.
>
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
> drivers/spi/bfin_spi6xx.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/spi/bfin_spi6xx.c b/drivers/spi/bfin_spi6xx.c
> index c25c4a9..07b833d 100644
> --- a/drivers/spi/bfin_spi6xx.c
> +++ b/drivers/spi/bfin_spi6xx.c
> @@ -154,10 +154,6 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
> if (!spi_cs_is_valid(bus, cs))
> return NULL;
>
> - if (bus >= ARRAY_SIZE(pins) || pins[bus] == NULL) {
> - debug("%s: invalid bus %u\n", __func__, bus);
> - return NULL;
> - }
> switch (bus) {
> #ifdef SPI0_REGBASE
> case 0:
> @@ -175,6 +171,7 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
> break;
> #endif
> default:
> + debug("%s: invalid bus %u\n", __func__, bus);
> return NULL;
> }
>
Acked-by: Scott Jiang <scott.jiang.linux@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-12-02 3:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-30 3:38 [U-Boot] [PATCH 1/2] spi: bfin_spi: Remove unnecessary test for bus and pins[bus] Axel Lin
2013-11-30 3:40 ` [U-Boot] [PATCH 2/2] spi: bfin_spi6xx: " Axel Lin
2013-12-02 3:43 ` Scott Jiang
2013-12-02 3:42 ` [U-Boot] [PATCH 1/2] spi: bfin_spi: " Scott Jiang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox