public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Checkpatch query
@ 2014-07-21 11:39 Lee Jones
  2014-07-21 13:06 ` Joe Perches
  2014-07-21 13:13 ` [PATCH] checkpatch: Allow case labels with ranges Joe Perches
  0 siblings, 2 replies; 8+ messages in thread
From: Lee Jones @ 2014-07-21 11:39 UTC (permalink / raw)
  To: Andy Whitcroft, Joe Perches; +Cc: linux-kernel

Hi Andy, Joe,

When running checkpatch on drivers/mfd/tps80031.c I recieve the
following warning:

> WARNING: Possible switch case/default not preceeded by break or
>          fallthrough comment
> #337: FILE: drivers/mfd/tps80031.c:337:
> +       case TPS80031_BACKUP_REG:
> 
> total: 0 errors, 1 warnings, 573 lines checked

... but we use switch statement fall through all the time when
identifying different types of registers used with Regmap.  Placing a
fall-through comment between them all sounds very messy to me.

Also, the warning only fires on 'case's which do not use '...'
notation, which seems a little odd.

Anyway, I'm not sure placing a 'fall through' comment makes the code
any cleaner or reduces possible failure rate in any way.  Is there any
chance that this check can be removed?

> static bool rd_wr_reg_id0(struct device *dev, unsigned int reg)
> {
> 	switch (reg) {
> 	case TPS80031_SMPS1_CFG_FORCE ... TPS80031_SMPS2_CFG_VOLTAGE:
> 		return true;
> 	default:
> 		return false;
> 	}
> }
> 
> static bool rd_wr_reg_id1(struct device *dev, unsigned int reg)
> {
> 	switch (reg) {
> 	case TPS80031_SECONDS_REG ... TPS80031_RTC_RESET_STATUS_REG:
> 	case TPS80031_VALIDITY0 ... TPS80031_VALIDITY7:
> 	case TPS80031_PHOENIX_START_CONDITION ... TPS80031_KEY_PRESS_DUR_CFG:
> 	case TPS80031_SMPS4_CFG_TRANS ... TPS80031_SMPS3_CFG_VOLTAGE:
> 	case TPS80031_BROADCAST_ADDR_ALL ... TPS80031_BROADCAST_ADDR_CLK_RST:
> 	case TPS80031_VANA_CFG_TRANS ... TPS80031_LDO7_CFG_VOLTAGE:
> 	case TPS80031_REGEN1_CFG_TRANS ... TPS80031_TMP_CFG_STATE:
> 	case TPS80031_PREQ1_RES_ASS_A ... TPS80031_PREQ3_RES_ASS_C:
> 	case TPS80031_SMPS_OFFSET ... TPS80031_BATDEBOUNCING:
> 	case TPS80031_CFG_INPUT_PUPD1 ... TPS80031_CFG_SMPS_PD:
> 	case TPS80031_BACKUP_REG:
> 		return true;
> 	default:
> 		return false;
> 	}
> }
> 
> static bool is_volatile_reg_id1(struct device *dev, unsigned int reg)
> {
> 	switch (reg) {
> 	case TPS80031_SMPS4_CFG_TRANS ... TPS80031_SMPS3_CFG_VOLTAGE:
> 	case TPS80031_VANA_CFG_TRANS ... TPS80031_LDO7_CFG_VOLTAGE:
> 	case TPS80031_REGEN1_CFG_TRANS ... TPS80031_TMP_CFG_STATE:
> 	case TPS80031_PREQ1_RES_ASS_A ... TPS80031_PREQ3_RES_ASS_C:
> 	case TPS80031_SMPS_OFFSET ... TPS80031_BATDEBOUNCING:
> 	case TPS80031_CFG_INPUT_PUPD1 ... TPS80031_CFG_SMPS_PD:
> 		return true;
> 	default:
> 		return false;
> 	}
> }



-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-07-22  7:05 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-21 11:39 Checkpatch query Lee Jones
2014-07-21 13:06 ` Joe Perches
2014-07-21 13:13 ` [PATCH] checkpatch: Allow case labels with ranges Joe Perches
2014-07-21 13:21   ` Lee Jones
2014-07-21 14:28     ` Joe Perches
2014-07-21 14:54       ` Lee Jones
     [not found]       ` <20140721143013.11ec351d47a9f822313247d2@linux-foundation.org>
2014-07-21 23:09         ` [PATCH] checkpatch: Fix false positive MISSING_BREAK warnings with --file Joe Perches
2014-07-22  7:05           ` Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox