diff for duplicates of <1497902827.8495.52.camel@perches.com> diff --git a/a/1.txt b/N1/1.txt index 2e6c68d..16b5fb2 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -34,22 +34,18 @@ Maybe index should be u8 as the one use it's assigned to is also u8 > +} bcm63xx_spi_freq_table[] = { -> { 20000000, SPI_CLK_20MHZ }, -> { 12500000, SPI_CLK_12_50MHZ }, -> { 6250000, SPI_CLK_6_250MHZ }, +> ? { 20000000, SPI_CLK_20MHZ }, +> ? { 12500000, SPI_CLK_12_50MHZ }, +> ? {??6250000, SPI_CLK_6_250MHZ }, > @@ -213,8 +216,8 @@ static void bcm63xx_spi_setup_transfer(struct spi_device *spi, -> -> /* Find the closest clock configuration */ -> for (i = 0; i < SPI_CLK_MASK; i++) { +> ? +> ? /* Find the closest clock configuration */ +> ? for (i = 0; i < SPI_CLK_MASK; i++) { > - if (t->speed_hz >= bcm63xx_spi_freq_table[i][0]) { > - clk_cfg = bcm63xx_spi_freq_table[i][1]; > + if (t->speed_hz >= bcm63xx_spi_freq_table[i].speed) { > + clk_cfg = bcm63xx_spi_freq_table[i].index; -> break; -> } -> } -> --- -To unsubscribe from this list: send the line "unsubscribe linux-spi" in -the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org -More majordomo info at http://vger.kernel.org/majordomo-info.html +> ? break; +> ? } +> ? } +> diff --git a/a/content_digest b/N1/content_digest index 9a85088..bd86f78 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,16 +1,9 @@ "ref\01497896268-5613-1-git-send-email-aravind.thk@gmail.com\0" "ref\01497901338.8495.50.camel@perches.com\0" - "ref\01497901338.8495.50.camel-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org\0" - "From\0Joe Perches <joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>\0" - "Subject\0Re: [PATCH v2] spi/bcm63xx: Fix checkpatch warnings\0" + "From\0joe@perches.com (Joe Perches)\0" + "Subject\0[PATCH v2] spi/bcm63xx: Fix checkpatch warnings\0" "Date\0Mon, 19 Jun 2017 13:07:07 -0700\0" - "To\0Aravind Thokala <aravind.thk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>" - Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> - " Florian Fainelli <f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>\0" - "Cc\0bcm-kernel-feedback-list-dY08KVG/lbpWk0Htik3J/w@public.gmane.org" - linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org - linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org - " linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\0" + "To\0linux-arm-kernel@lists.infradead.org\0" "\00:1\0" "b\0" "On Mon, 2017-06-19 at 12:42 -0700, Joe Perches wrote:\n" @@ -49,24 +42,20 @@ "it's assigned to is also u8\n" "\n" "> +} bcm63xx_spi_freq_table[] = {\n" - "> \302\240\t{ 20000000, SPI_CLK_20MHZ },\n" - "> \302\240\t{ 12500000, SPI_CLK_12_50MHZ },\n" - "> \302\240\t{\302\240\302\2406250000, SPI_CLK_6_250MHZ },\n" + "> ?\t{ 20000000, SPI_CLK_20MHZ },\n" + "> ?\t{ 12500000, SPI_CLK_12_50MHZ },\n" + "> ?\t{??6250000, SPI_CLK_6_250MHZ },\n" "> @@ -213,8 +216,8 @@ static void bcm63xx_spi_setup_transfer(struct spi_device *spi,\n" - "> \302\240\n" - "> \302\240\t/* Find the closest clock configuration */\n" - "> \302\240\tfor (i = 0; i < SPI_CLK_MASK; i++) {\n" + "> ?\n" + "> ?\t/* Find the closest clock configuration */\n" + "> ?\tfor (i = 0; i < SPI_CLK_MASK; i++) {\n" "> -\t\tif (t->speed_hz >= bcm63xx_spi_freq_table[i][0]) {\n" "> -\t\t\tclk_cfg = bcm63xx_spi_freq_table[i][1];\n" "> +\t\tif (t->speed_hz >= bcm63xx_spi_freq_table[i].speed) {\n" "> +\t\t\tclk_cfg = bcm63xx_spi_freq_table[i].index;\n" - "> \302\240\t\t\tbreak;\n" - "> \302\240\t\t}\n" - "> \302\240\t}\n" - "> \n" - "--\n" - "To unsubscribe from this list: send the line \"unsubscribe linux-spi\" in\n" - "the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n" - More majordomo info at http://vger.kernel.org/majordomo-info.html + "> ?\t\t\tbreak;\n" + "> ?\t\t}\n" + "> ?\t}\n" + > -5faf9d50e776e067c8d6fbdeea72539c4f8cc49d17ece44c93429585669aced3 +e819d52848e9d270a12a1a34a527f8e1ffc3b53ba919d664253e387e07490dcd
diff --git a/a/1.txt b/N2/1.txt index 2e6c68d..f10315d 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -48,8 +48,4 @@ it's assigned to is also u8 > break; > } > } -> --- -To unsubscribe from this list: send the line "unsubscribe linux-spi" in -the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org -More majordomo info at http://vger.kernel.org/majordomo-info.html +> diff --git a/a/content_digest b/N2/content_digest index 9a85088..fa60a73 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -1,16 +1,15 @@ "ref\01497896268-5613-1-git-send-email-aravind.thk@gmail.com\0" "ref\01497901338.8495.50.camel@perches.com\0" - "ref\01497901338.8495.50.camel-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org\0" - "From\0Joe Perches <joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>\0" + "From\0Joe Perches <joe@perches.com>\0" "Subject\0Re: [PATCH v2] spi/bcm63xx: Fix checkpatch warnings\0" "Date\0Mon, 19 Jun 2017 13:07:07 -0700\0" - "To\0Aravind Thokala <aravind.thk-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>" - Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> - " Florian Fainelli <f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>\0" - "Cc\0bcm-kernel-feedback-list-dY08KVG/lbpWk0Htik3J/w@public.gmane.org" - linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org - linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org - " linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\0" + "To\0Aravind Thokala <aravind.thk@gmail.com>" + Mark Brown <broonie@kernel.org> + " Florian Fainelli <f.fainelli@gmail.com>\0" + "Cc\0bcm-kernel-feedback-list@broadcom.com" + linux-spi@vger.kernel.org + linux-arm-kernel@lists.infradead.org + " linux-kernel@vger.kernel.org\0" "\00:1\0" "b\0" "On Mon, 2017-06-19 at 12:42 -0700, Joe Perches wrote:\n" @@ -63,10 +62,6 @@ "> \302\240\t\t\tbreak;\n" "> \302\240\t\t}\n" "> \302\240\t}\n" - "> \n" - "--\n" - "To unsubscribe from this list: send the line \"unsubscribe linux-spi\" in\n" - "the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n" - More majordomo info at http://vger.kernel.org/majordomo-info.html + > -5faf9d50e776e067c8d6fbdeea72539c4f8cc49d17ece44c93429585669aced3 +d25c119718e525e2a00803a751f34b81dfa1bfb2b9b1a87bbae86d2aeba54fb1
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.