Message ID | 1438247414-19708-4-git-send-email-tony.cho@atmel.com (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Kalle Valo |
Headers | show |
On Thu, Jul 30, 2015 at 06:10:12PM +0900, Tony Cho wrote: > This patch removes the warnings reported by checkpatch.pl on missing > a blank line after declarations. > > Signed-off-by: Tony Cho <tony.cho@atmel.com> > --- > V2: This patch doesn't have a difference with the first one. However, > it's resent becasue not accepted with the 9th patch. > --- > drivers/staging/wilc1000/wilc_sdio.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/staging/wilc1000/wilc_sdio.c b/drivers/staging/wilc1000/wilc_sdio.c > index ee1cbd1..50be2a1 100644 > --- a/drivers/staging/wilc1000/wilc_sdio.c > +++ b/drivers/staging/wilc1000/wilc_sdio.c > @@ -780,6 +780,7 @@ static int sdio_clear_int_ext(uint32_t val) > > if (g_sdio.has_thrpt_enh3) { > uint32_t reg; > + > reg = val & ((1 << MAX_NUN_INT_THRPT_ENH2) - 1); > > /* select VMM table 0 */ This patch will not apply. After your first patch (1/5) if (g_sdio.has_thrpt_enh3) has become if(g_sdio.has_thrpt_enh3). regards sudip -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/staging/wilc1000/wilc_sdio.c b/drivers/staging/wilc1000/wilc_sdio.c index ee1cbd1..50be2a1 100644 --- a/drivers/staging/wilc1000/wilc_sdio.c +++ b/drivers/staging/wilc1000/wilc_sdio.c @@ -780,6 +780,7 @@ static int sdio_clear_int_ext(uint32_t val) if (g_sdio.has_thrpt_enh3) { uint32_t reg; + reg = val & ((1 << MAX_NUN_INT_THRPT_ENH2) - 1); /* select VMM table 0 */
This patch removes the warnings reported by checkpatch.pl on missing a blank line after declarations. Signed-off-by: Tony Cho <tony.cho@atmel.com> --- V2: This patch doesn't have a difference with the first one. However, it's resent becasue not accepted with the 9th patch. --- drivers/staging/wilc1000/wilc_sdio.c | 1 + 1 file changed, 1 insertion(+)