linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>
Cc: Chanwoo Choi <cw00.choi@samsung.com>,
	MyungJoo Ham <myungjoo.ham@samsung.com>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Samuel Ortiz <sameo@linux.intel.com>,
	Sebastian Reichel <sre@kernel.org>,
	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>,
	David Woodhouse <dwmw2@infradead.org>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>,
	linux-kernel@vger.kernel.org, linux-input@vger.kernel.org,
	linux-pm@vger.kernel.org
Subject: Re: [PATCH 08/10] mfd/extcon: max77843: Rename defines to allow inclusion with max77693
Date: Wed, 29 Apr 2015 14:11:01 +0100	[thread overview]
Message-ID: <20150429131101.GN9169@x1> (raw)
In-Reply-To: <1430305114-23598-9-git-send-email-k.kozlowski.k@gmail.com>

On Wed, 29 Apr 2015, Krzysztof Kozlowski wrote:

> Add MAX77843_MUIC prefix to some of the defines used in max77843 extcon
> driver so the max77693-private.h can be included simultaneously with
> max77843-private.h.
> 
> Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>
> ---
>  drivers/extcon/extcon-max77843.c     |  59 ++++++++++----
>  include/linux/mfd/max77843-private.h | 154 +++++++++++++++++------------------

For the MFD changes:

Acked-by: Lee Jones <lee.jones@linaro.org>

>  2 files changed, 118 insertions(+), 95 deletions(-)
> 
> diff --git a/drivers/extcon/extcon-max77843.c b/drivers/extcon/extcon-max77843.c
> index fec26128ecfc..614f1996c51b 100644
> --- a/drivers/extcon/extcon-max77843.c
> +++ b/drivers/extcon/extcon-max77843.c
> @@ -226,11 +226,11 @@ static int max77843_muic_set_path(struct max77843_muic_info *info,
>  	if (attached)
>  		ctrl1 = val;
>  	else
> -		ctrl1 = CONTROL1_SW_OPEN;
> +		ctrl1 = MAX77843_MUIC_CONTROL1_SW_OPEN;
>  
>  	ret = regmap_update_bits(max77843->regmap_muic,
>  			MAX77843_MUIC_REG_CONTROL1,
> -			CONTROL1_COM_SW, ctrl1);
> +			MAX77843_MUIC_CONTROL1_COM_SW, ctrl1);
>  	if (ret < 0) {
>  		dev_err(info->dev, "Cannot switch MUIC port\n");
>  		return ret;
> @@ -264,7 +264,7 @@ static int max77843_muic_get_cable_type(struct max77843_muic_info *info,
>  
>  	adc = info->status[MAX77843_MUIC_STATUS1] &
>  			MAX77843_MUIC_STATUS1_ADC_MASK;
> -	adc >>= STATUS1_ADC_SHIFT;
> +	adc >>= MAX77843_MUIC_STATUS1_ADC_SHIFT;
>  
>  	switch (group) {
>  	case MAX77843_CABLE_GROUP_ADC:
> @@ -330,7 +330,7 @@ static int max77843_muic_get_cable_type(struct max77843_muic_info *info,
>  			/* Get VBVolt register bit */
>  			gnd_type |= (info->status[MAX77843_MUIC_STATUS2] &
>  					MAX77843_MUIC_STATUS2_VBVOLT_MASK);
> -			gnd_type >>= STATUS2_VBVOLT_SHIFT;
> +			gnd_type >>= MAX77843_MUIC_STATUS2_VBVOLT_SHIFT;
>  
>  			/* Offset of GND cable */
>  			gnd_type |= MAX77843_MUIC_GND_USB_HOST;
> @@ -359,7 +359,9 @@ static int max77843_muic_adc_gnd_handler(struct max77843_muic_info *info)
>  	switch (gnd_cable_type) {
>  	case MAX77843_MUIC_GND_USB_HOST:
>  	case MAX77843_MUIC_GND_USB_HOST_VB:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_USB, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_USB,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  
> @@ -367,7 +369,9 @@ static int max77843_muic_adc_gnd_handler(struct max77843_muic_info *info)
>  		break;
>  	case MAX77843_MUIC_GND_MHL_VB:
>  	case MAX77843_MUIC_GND_MHL:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_OPEN, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_OPEN,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  
> @@ -392,25 +396,33 @@ static int max77843_muic_jig_handler(struct max77843_muic_info *info,
>  
>  	switch (cable_type) {
>  	case MAX77843_MUIC_ADC_FACTORY_MODE_USB_OFF:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_USB, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_USB,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  		extcon_set_cable_state(info->edev, "JIG-USB-OFF", attached);
>  		break;
>  	case MAX77843_MUIC_ADC_FACTORY_MODE_USB_ON:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_USB, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_USB,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  		extcon_set_cable_state(info->edev, "JIG-USB-ON", attached);
>  		break;
>  	case MAX77843_MUIC_ADC_FACTORY_MODE_UART_OFF:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_UART, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_UART,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  		extcon_set_cable_state(info->edev, "JIG-UART-OFF", attached);
>  		break;
>  	default:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_OPEN, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_OPEN,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  		break;
> @@ -502,14 +514,18 @@ static int max77843_muic_chg_handler(struct max77843_muic_info *info)
>  
>  	switch (chg_type) {
>  	case MAX77843_MUIC_CHG_USB:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_USB, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_USB,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  
>  		extcon_set_cable_state(info->edev, "USB", attached);
>  		break;
>  	case MAX77843_MUIC_CHG_DOWNSTREAM:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_OPEN, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_OPEN,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  
> @@ -517,21 +533,27 @@ static int max77843_muic_chg_handler(struct max77843_muic_info *info)
>  				"CHARGER-DOWNSTREAM", attached);
>  		break;
>  	case MAX77843_MUIC_CHG_DEDICATED:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_OPEN, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_OPEN,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  
>  		extcon_set_cable_state(info->edev, "TA", attached);
>  		break;
>  	case MAX77843_MUIC_CHG_SPECIAL_500MA:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_OPEN, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_OPEN,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  
>  		extcon_set_cable_state(info->edev, "SLOW-CHAREGER", attached);
>  		break;
>  	case MAX77843_MUIC_CHG_SPECIAL_1A:
> -		ret = max77843_muic_set_path(info, CONTROL1_SW_OPEN, attached);
> +		ret = max77843_muic_set_path(info,
> +					     MAX77843_MUIC_CONTROL1_SW_OPEN,
> +					     attached);
>  		if (ret < 0)
>  			return ret;
>  
> @@ -554,7 +576,8 @@ static int max77843_muic_chg_handler(struct max77843_muic_info *info)
>  			"failed to detect %s accessory (chg_type:0x%x)\n",
>  			attached ? "attached" : "detached", chg_type);
>  
> -		max77843_muic_set_path(info, CONTROL1_SW_OPEN, attached);
> +		max77843_muic_set_path(info, MAX77843_MUIC_CONTROL1_SW_OPEN,
> +				       attached);
>  		return -EINVAL;
>  	}
>  
> @@ -693,7 +716,7 @@ static int max77843_muic_set_debounce_time(struct max77843_muic_info *info,
>  		ret = regmap_update_bits(max77843->regmap_muic,
>  				MAX77843_MUIC_REG_CONTROL4,
>  				MAX77843_MUIC_CONTROL4_ADCDBSET_MASK,
> -				time << CONTROL4_ADCDBSET_SHIFT);
> +				time << MAX77843_MUIC_CONTROL4_ADCDBSET_SHIFT);
>  		if (ret < 0) {
>  			dev_err(info->dev, "Cannot write MUIC regmap\n");
>  			return ret;
> @@ -794,7 +817,7 @@ static int max77843_muic_probe(struct platform_device *pdev)
>  	max77843_muic_set_debounce_time(info, MAX77843_DEBOUNCE_TIME_25MS);
>  
>  	/* Set initial path for UART */
> -	max77843_muic_set_path(info, CONTROL1_SW_UART, true);
> +	max77843_muic_set_path(info, MAX77843_MUIC_CONTROL1_SW_UART, true);
>  
>  	/* Check revision number of MUIC device */
>  	ret = regmap_read(max77843->regmap_muic, MAX77843_MUIC_REG_ID, &id);
> diff --git a/include/linux/mfd/max77843-private.h b/include/linux/mfd/max77843-private.h
> index 0121d9440340..c19303b0ccfd 100644
> --- a/include/linux/mfd/max77843-private.h
> +++ b/include/linux/mfd/max77843-private.h
> @@ -318,62 +318,62 @@ enum max77843_irq_muic {
>  	MAX77843_INTSRCMASK_SYS_MASK | MAX77843_INTSRCMASK_CHGR_MASK)
>  
>  /* MAX77843 STATUS register*/
> -#define STATUS1_ADC_SHIFT			0
> -#define STATUS1_ADCERROR_SHIFT			6
> -#define STATUS1_ADC1K_SHIFT			7
> -#define STATUS2_CHGTYP_SHIFT			0
> -#define STATUS2_CHGDETRUN_SHIFT			3
> -#define STATUS2_DCDTMR_SHIFT			4
> -#define STATUS2_DXOVP_SHIFT			5
> -#define STATUS2_VBVOLT_SHIFT			6
> -#define STATUS3_VBADC_SHIFT			0
> -#define STATUS3_VDNMON_SHIFT			4
> -#define STATUS3_DNRES_SHIFT			5
> -#define STATUS3_MPNACK_SHIFT			6
> -
> -#define MAX77843_MUIC_STATUS1_ADC_MASK		(0x1f << STATUS1_ADC_SHIFT)
> -#define MAX77843_MUIC_STATUS1_ADCERROR_MASK	BIT(STATUS1_ADCERROR_SHIFT)
> -#define MAX77843_MUIC_STATUS1_ADC1K_MASK	BIT(STATUS1_ADC1K_SHIFT)
> -#define MAX77843_MUIC_STATUS2_CHGTYP_MASK	(0x7 << STATUS2_CHGTYP_SHIFT)
> -#define MAX77843_MUIC_STATUS2_CHGDETRUN_MASK	BIT(STATUS2_CHGDETRUN_SHIFT)
> -#define MAX77843_MUIC_STATUS2_DCDTMR_MASK	BIT(STATUS2_DCDTMR_SHIFT)
> -#define MAX77843_MUIC_STATUS2_DXOVP_MASK	BIT(STATUS2_DXOVP_SHIFT)
> -#define MAX77843_MUIC_STATUS2_VBVOLT_MASK	BIT(STATUS2_VBVOLT_SHIFT)
> -#define MAX77843_MUIC_STATUS3_VBADC_MASK	(0xf << STATUS3_VBADC_SHIFT)
> -#define MAX77843_MUIC_STATUS3_VDNMON_MASK	BIT(STATUS3_VDNMON_SHIFT)
> -#define MAX77843_MUIC_STATUS3_DNRES_MASK	BIT(STATUS3_DNRES_SHIFT)
> -#define MAX77843_MUIC_STATUS3_MPNACK_MASK	BIT(STATUS3_MPNACK_SHIFT)
> +#define MAX77843_MUIC_STATUS1_ADC_SHIFT		0
> +#define MAX77843_MUIC_STATUS1_ADCERROR_SHIFT	6
> +#define MAX77843_MUIC_STATUS1_ADC1K_SHIFT	7
> +#define MAX77843_MUIC_STATUS2_CHGTYP_SHIFT	0
> +#define MAX77843_MUIC_STATUS2_CHGDETRUN_SHIFT	3
> +#define MAX77843_MUIC_STATUS2_DCDTMR_SHIFT	4
> +#define MAX77843_MUIC_STATUS2_DXOVP_SHIFT	5
> +#define MAX77843_MUIC_STATUS2_VBVOLT_SHIFT	6
> +#define MAX77843_MUIC_STATUS3_VBADC_SHIFT	0
> +#define MAX77843_MUIC_STATUS3_VDNMON_SHIFT	4
> +#define MAX77843_MUIC_STATUS3_DNRES_SHIFT	5
> +#define MAX77843_MUIC_STATUS3_MPNACK_SHIFT	6
> +
> +#define MAX77843_MUIC_STATUS1_ADC_MASK		(0x1f << MAX77843_MUIC_STATUS1_ADC_SHIFT)
> +#define MAX77843_MUIC_STATUS1_ADCERROR_MASK	BIT(MAX77843_MUIC_STATUS1_ADCERROR_SHIFT)
> +#define MAX77843_MUIC_STATUS1_ADC1K_MASK	BIT(MAX77843_MUIC_STATUS1_ADC1K_SHIFT)
> +#define MAX77843_MUIC_STATUS2_CHGTYP_MASK	(0x7 << MAX77843_MUIC_STATUS2_CHGTYP_SHIFT)
> +#define MAX77843_MUIC_STATUS2_CHGDETRUN_MASK	BIT(MAX77843_MUIC_STATUS2_CHGDETRUN_SHIFT)
> +#define MAX77843_MUIC_STATUS2_DCDTMR_MASK	BIT(MAX77843_MUIC_STATUS2_DCDTMR_SHIFT)
> +#define MAX77843_MUIC_STATUS2_DXOVP_MASK	BIT(MAX77843_MUIC_STATUS2_DXOVP_SHIFT)
> +#define MAX77843_MUIC_STATUS2_VBVOLT_MASK	BIT(MAX77843_MUIC_STATUS2_VBVOLT_SHIFT)
> +#define MAX77843_MUIC_STATUS3_VBADC_MASK	(0xf << MAX77843_MUIC_STATUS3_VBADC_SHIFT)
> +#define MAX77843_MUIC_STATUS3_VDNMON_MASK	BIT(MAX77843_MUIC_STATUS3_VDNMON_SHIFT)
> +#define MAX77843_MUIC_STATUS3_DNRES_MASK	BIT(MAX77843_MUIC_STATUS3_DNRES_SHIFT)
> +#define MAX77843_MUIC_STATUS3_MPNACK_MASK	BIT(MAX77843_MUIC_STATUS3_MPNACK_SHIFT)
>  
>  /* MAX77843 CONTROL register */
> -#define CONTROL1_COMP1SW_SHIFT			0
> -#define CONTROL1_COMP2SW_SHIFT			3
> -#define CONTROL1_IDBEN_SHIFT			7
> -#define CONTROL2_LOWPWR_SHIFT			0
> -#define CONTROL2_ADCEN_SHIFT			1
> -#define CONTROL2_CPEN_SHIFT			2
> -#define CONTROL2_ACC_DET_SHIFT			5
> -#define CONTROL2_USBCPINT_SHIFT			6
> -#define CONTROL2_RCPS_SHIFT			7
> -#define CONTROL3_JIGSET_SHIFT			0
> -#define CONTROL4_ADCDBSET_SHIFT			0
> -#define CONTROL4_USBAUTO_SHIFT			4
> -#define CONTROL4_FCTAUTO_SHIFT			5
> -#define CONTROL4_ADCMODE_SHIFT			6
> -
> -#define MAX77843_MUIC_CONTROL1_COMP1SW_MASK	(0x7 << CONTROL1_COMP1SW_SHIFT)
> -#define MAX77843_MUIC_CONTROL1_COMP2SW_MASK	(0x7 << CONTROL1_COMP2SW_SHIFT)
> -#define MAX77843_MUIC_CONTROL1_IDBEN_MASK	BIT(CONTROL1_IDBEN_SHIFT)
> -#define MAX77843_MUIC_CONTROL2_LOWPWR_MASK	BIT(CONTROL2_LOWPWR_SHIFT)
> -#define MAX77843_MUIC_CONTROL2_ADCEN_MASK	BIT(CONTROL2_ADCEN_SHIFT)
> -#define MAX77843_MUIC_CONTROL2_CPEN_MASK	BIT(CONTROL2_CPEN_SHIFT)
> -#define MAX77843_MUIC_CONTROL2_ACC_DET_MASK	BIT(CONTROL2_ACC_DET_SHIFT)
> -#define MAX77843_MUIC_CONTROL2_USBCPINT_MASK	BIT(CONTROL2_USBCPINT_SHIFT)
> -#define MAX77843_MUIC_CONTROL2_RCPS_MASK	BIT(CONTROL2_RCPS_SHIFT)
> -#define MAX77843_MUIC_CONTROL3_JIGSET_MASK	(0x3 << CONTROL3_JIGSET_SHIFT)
> -#define MAX77843_MUIC_CONTROL4_ADCDBSET_MASK	(0x3 << CONTROL4_ADCDBSET_SHIFT)
> -#define MAX77843_MUIC_CONTROL4_USBAUTO_MASK	BIT(CONTROL4_USBAUTO_SHIFT)
> -#define MAX77843_MUIC_CONTROL4_FCTAUTO_MASK	BIT(CONTROL4_FCTAUTO_SHIFT)
> -#define MAX77843_MUIC_CONTROL4_ADCMODE_MASK	(0x3 << CONTROL4_ADCMODE_SHIFT)
> +#define MAX77843_MUIC_CONTROL1_COMP1SW_SHIFT	0
> +#define MAX77843_MUIC_CONTROL1_COMP2SW_SHIFT	3
> +#define MAX77843_MUIC_CONTROL1_IDBEN_SHIFT	7
> +#define MAX77843_MUIC_CONTROL2_LOWPWR_SHIFT	0
> +#define MAX77843_MUIC_CONTROL2_ADCEN_SHIFT	1
> +#define MAX77843_MUIC_CONTROL2_CPEN_SHIFT	2
> +#define MAX77843_MUIC_CONTROL2_ACC_DET_SHIFT	5
> +#define MAX77843_MUIC_CONTROL2_USBCPINT_SHIFT	6
> +#define MAX77843_MUIC_CONTROL2_RCPS_SHIFT	7
> +#define MAX77843_MUIC_CONTROL3_JIGSET_SHIFT	0
> +#define MAX77843_MUIC_CONTROL4_ADCDBSET_SHIFT	0
> +#define MAX77843_MUIC_CONTROL4_USBAUTO_SHIFT	4
> +#define MAX77843_MUIC_CONTROL4_FCTAUTO_SHIFT	5
> +#define MAX77843_MUIC_CONTROL4_ADCMODE_SHIFT	6
> +
> +#define MAX77843_MUIC_CONTROL1_COMP1SW_MASK	(0x7 << MAX77843_MUIC_CONTROL1_COMP1SW_SHIFT)
> +#define MAX77843_MUIC_CONTROL1_COMP2SW_MASK	(0x7 << MAX77843_MUIC_CONTROL1_COMP2SW_SHIFT)
> +#define MAX77843_MUIC_CONTROL1_IDBEN_MASK	BIT(MAX77843_MUIC_CONTROL1_IDBEN_SHIFT)
> +#define MAX77843_MUIC_CONTROL2_LOWPWR_MASK	BIT(MAX77843_MUIC_CONTROL2_LOWPWR_SHIFT)
> +#define MAX77843_MUIC_CONTROL2_ADCEN_MASK	BIT(MAX77843_MUIC_CONTROL2_ADCEN_SHIFT)
> +#define MAX77843_MUIC_CONTROL2_CPEN_MASK	BIT(MAX77843_MUIC_CONTROL2_CPEN_SHIFT)
> +#define MAX77843_MUIC_CONTROL2_ACC_DET_MASK	BIT(MAX77843_MUIC_CONTROL2_ACC_DET_SHIFT)
> +#define MAX77843_MUIC_CONTROL2_USBCPINT_MASK	BIT(MAX77843_MUIC_CONTROL2_USBCPINT_SHIFT)
> +#define MAX77843_MUIC_CONTROL2_RCPS_MASK	BIT(MAX77843_MUIC_CONTROL2_RCPS_SHIFT)
> +#define MAX77843_MUIC_CONTROL3_JIGSET_MASK	(0x3 << MAX77843_MUIC_CONTROL3_JIGSET_SHIFT)
> +#define MAX77843_MUIC_CONTROL4_ADCDBSET_MASK	(0x3 << MAX77843_MUIC_CONTROL4_ADCDBSET_SHIFT)
> +#define MAX77843_MUIC_CONTROL4_USBAUTO_MASK	BIT(MAX77843_MUIC_CONTROL4_USBAUTO_SHIFT)
> +#define MAX77843_MUIC_CONTROL4_FCTAUTO_MASK	BIT(MAX77843_MUIC_CONTROL4_FCTAUTO_SHIFT)
> +#define MAX77843_MUIC_CONTROL4_ADCMODE_MASK	(0x3 << MAX77843_MUIC_CONTROL4_ADCMODE_SHIFT)
>  
>  /* MAX77843 switch port */
>  #define COM_OPEN				0
> @@ -383,38 +383,38 @@ enum max77843_irq_muic {
>  #define COM_AUX_USB				4
>  #define COM_AUX_UART				5
>  
> -#define CONTROL1_COM_SW \
> +#define MAX77843_MUIC_CONTROL1_COM_SW \
>  	((MAX77843_MUIC_CONTROL1_COMP1SW_MASK | \
>  	 MAX77843_MUIC_CONTROL1_COMP2SW_MASK))
>  
> -#define CONTROL1_SW_OPEN \
> -	((COM_OPEN << CONTROL1_COMP1SW_SHIFT | \
> -	 COM_OPEN << CONTROL1_COMP2SW_SHIFT))
> -#define CONTROL1_SW_USB \
> -	((COM_USB << CONTROL1_COMP1SW_SHIFT | \
> -	 COM_USB << CONTROL1_COMP2SW_SHIFT))
> -#define CONTROL1_SW_AUDIO \
> -	((COM_AUDIO << CONTROL1_COMP1SW_SHIFT | \
> -	 COM_AUDIO << CONTROL1_COMP2SW_SHIFT))
> -#define CONTROL1_SW_UART \
> -	((COM_UART << CONTROL1_COMP1SW_SHIFT | \
> -	 COM_UART << CONTROL1_COMP2SW_SHIFT))
> -#define CONTROL1_SW_AUX_USB \
> -	((COM_AUX_USB << CONTROL1_COMP1SW_SHIFT | \
> -	 COM_AUX_USB << CONTROL1_COMP2SW_SHIFT))
> -#define CONTROL1_SW_AUX_UART \
> -	((COM_AUX_UART << CONTROL1_COMP1SW_SHIFT | \
> -	 COM_AUX_UART << CONTROL1_COMP2SW_SHIFT))
> +#define MAX77843_MUIC_CONTROL1_SW_OPEN \
> +	((COM_OPEN << MAX77843_MUIC_CONTROL1_COMP1SW_SHIFT | \
> +	 COM_OPEN << MAX77843_MUIC_CONTROL1_COMP2SW_SHIFT))
> +#define MAX77843_MUIC_CONTROL1_SW_USB \
> +	((COM_USB << MAX77843_MUIC_CONTROL1_COMP1SW_SHIFT | \
> +	 COM_USB << MAX77843_MUIC_CONTROL1_COMP2SW_SHIFT))
> +#define MAX77843_MUIC_CONTROL1_SW_AUDIO \
> +	((COM_AUDIO << MAX77843_MUIC_CONTROL1_COMP1SW_SHIFT | \
> +	 COM_AUDIO << MAX77843_MUIC_CONTROL1_COMP2SW_SHIFT))
> +#define MAX77843_MUIC_CONTROL1_SW_UART \
> +	((COM_UART << MAX77843_MUIC_CONTROL1_COMP1SW_SHIFT | \
> +	 COM_UART << MAX77843_MUIC_CONTROL1_COMP2SW_SHIFT))
> +#define MAX77843_MUIC_CONTROL1_SW_AUX_USB \
> +	((COM_AUX_USB << MAX77843_MUIC_CONTROL1_COMP1SW_SHIFT | \
> +	 COM_AUX_USB << MAX77843_MUIC_CONTROL1_COMP2SW_SHIFT))
> +#define MAX77843_MUIC_CONTROL1_SW_AUX_UART \
> +	((COM_AUX_UART << MAX77843_MUIC_CONTROL1_COMP1SW_SHIFT | \
> +	 COM_AUX_UART << MAX77843_MUIC_CONTROL1_COMP2SW_SHIFT))
>  
>  #define MAX77843_DISABLE			0
>  #define MAX77843_ENABLE				1
>  
>  #define CONTROL4_AUTO_DISABLE \
> -	((MAX77843_DISABLE << CONTROL4_USBAUTO_SHIFT) | \
> -	(MAX77843_DISABLE << CONTROL4_FCTAUTO_SHIFT))
> +	((MAX77843_DISABLE << MAX77843_MUIC_CONTROL4_USBAUTO_SHIFT) | \
> +	(MAX77843_DISABLE << MAX77843_MUIC_CONTROL4_FCTAUTO_SHIFT))
>  #define CONTROL4_AUTO_ENABLE \
> -	((MAX77843_ENABLE << CONTROL4_USBAUTO_SHIFT) | \
> -	(MAX77843_ENABLE << CONTROL4_FCTAUTO_SHIFT))
> +	((MAX77843_ENABLE << MAX77843_MUIC_CONTROL4_USBAUTO_SHIFT) | \
> +	(MAX77843_ENABLE << MAX77843_MUIC_CONTROL4_FCTAUTO_SHIFT))
>  
>  /* MAX77843 SAFEOUT LDO Control register */
>  #define SAFEOUTCTRL_SAFEOUT1_SHIFT		0

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

  reply	other threads:[~2015-04-29 13:11 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-29 10:58 [PATCH 00/10] regulator/power/mfd/input/extcon: Merge max77843 into max77693 Krzysztof Kozlowski
2015-04-29 10:58 ` [PATCH 01/10] mfd/extcon: max77693: Remove unused extern declarations and max77693_dev members Krzysztof Kozlowski
2015-05-04  6:45   ` Chanwoo Choi
2015-05-04  6:49     ` Krzysztof Kozłowski
2015-05-04  6:54       ` Chanwoo Choi
2015-05-04  7:01         ` Krzysztof Kozłowski
2015-05-05  8:24   ` Lee Jones
2015-04-29 10:58 ` [PATCH 02/10] mfd: max77693: Store I2C device type as enum and add default unknown Krzysztof Kozlowski
2015-04-29 10:58 ` [PATCH 03/10] regulator: max77693: Use core code for charger's is_enabled Krzysztof Kozlowski
2015-04-29 11:03   ` Mark Brown
2015-04-29 11:08     ` Krzysztof Kozłowski
2015-04-29 10:58 ` [PATCH 04/10] regulator: max77693: Support different register configurations Krzysztof Kozlowski
2015-04-29 17:41   ` Mark Brown
2015-04-29 10:58 ` [PATCH 05/10] max77693: Move state container to common header Krzysztof Kozlowski
2015-05-23 15:11   ` Sebastian Reichel
2015-05-27  9:17   ` Lee Jones
2015-04-29 10:58 ` [PATCH 06/10] max77843: Switch to common max77693 state container Krzysztof Kozlowski
2015-04-29 10:58 ` [PATCH 07/10] mfd/extcon: max77693: Rename defines to allow inclusion with max77843 Krzysztof Kozlowski
2015-04-29 13:12   ` Lee Jones
2015-04-29 13:23     ` Krzysztof Kozłowski
2015-04-29 10:58 ` [PATCH 08/10] mfd/extcon: max77843: Rename defines to allow inclusion with max77693 Krzysztof Kozlowski
2015-04-29 13:11   ` Lee Jones [this message]
2015-04-29 10:58 ` [PATCH 09/10] regulator: max77693: Add support for MAX77843 device Krzysztof Kozlowski
2015-04-29 17:58   ` Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150429131101.GN9169@x1 \
    --to=lee.jones@linaro.org \
    --cc=broonie@kernel.org \
    --cc=cw00.choi@samsung.com \
    --cc=dbaryshkov@gmail.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=dwmw2@infradead.org \
    --cc=k.kozlowski.k@gmail.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=myungjoo.ham@samsung.com \
    --cc=sameo@linux.intel.com \
    --cc=sre@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).