From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756119Ab2JQD1K (ORCPT ); Tue, 16 Oct 2012 23:27:10 -0400 Received: from mail-pa0-f46.google.com ([209.85.220.46]:58882 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755690Ab2JQD1I (ORCPT ); Tue, 16 Oct 2012 23:27:08 -0400 Message-ID: <1350444418.4562.1.camel@phoenix> Subject: [PATCH RFT] regulator: vexpress: Add missing n_voltages setting From: Axel Lin To: Mark Brown Cc: Pawel Moll , Liam Girdwood , linux-kernel@vger.kernel.org Date: Wed, 17 Oct 2012 11:26:58 +0800 Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Axel Lin --- Hi Pawel, I don't have a chance to compile test this patch because I could not find VEXPRESS_CONFIG in current tree. Can you help testing this patch? Thanks, Axel drivers/regulator/vexpress.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/regulator/vexpress.c b/drivers/regulator/vexpress.c index 1702945..94a8cb9 100644 --- a/drivers/regulator/vexpress.c +++ b/drivers/regulator/vexpress.c @@ -86,10 +86,14 @@ static int vexpress_regulator_probe(struct platform_device *pdev) } init_data->constraints.apply_uV = 0; - if (init_data->constraints.min_uV && init_data->constraints.max_uV) + if (init_data->constraints.min_uV && init_data->constraints.max_uV) { reg->desc.ops = &vexpress_regulator_ops; - else + reg->desc.n_voltages = init_data->constraints.max_uV - + init_data->constraints.min_uV + 1; + } else { reg->desc.ops = &vexpress_regulator_ops_ro; + reg->desc.n_voltages = 1; + } config.dev = &pdev->dev; config.init_data = init_data; -- 1.7.9.5