From: Jonathan Cameron <jic23@kernel.org>
To: Hans de Goede <hdegoede@redhat.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Hartmut Knaack <knaack.h@gmx.de>,
Lars-Peter Clausen <lars@metafoo.de>,
Peter Meerwald-Stadler <pmeerw@pmeerw.net>,
linux-iio@vger.kernel.org
Subject: Re: [PATCH 2/2] Revert "iio: accel: bma180: Add support for BMA250E"
Date: Sun, 11 Jun 2017 14:53:58 +0100 [thread overview]
Message-ID: <20170611145358.7bf8cd12@kernel.org> (raw)
In-Reply-To: <20170606203538.15250-3-hdegoede@redhat.com>
On Tue, 6 Jun 2017 22:35:38 +0200
Hans de Goede <hdegoede@redhat.com> wrote:
> This reverts commit f1320b09517bceb261fed887fe261d6cbab2094e.
>
> The BMA250E is already handled by the bmc150-accel-i2c driver, which
> supports the "E" variants of the BMA??? accelerometers better then the
> bma180 driver.
>
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Applied to the togreg branch of iio.git and pushed out as
testing for the autobuilders to play with it.
Thanks,
Jonathan
> ---
> drivers/iio/accel/bma180.c | 24 +-----------------------
> 1 file changed, 1 insertion(+), 23 deletions(-)
>
> diff --git a/drivers/iio/accel/bma180.c b/drivers/iio/accel/bma180.c
> index 3d66948..efc6773 100644
> --- a/drivers/iio/accel/bma180.c
> +++ b/drivers/iio/accel/bma180.c
> @@ -36,7 +36,6 @@
> enum chip_ids {
> BMA180,
> BMA250,
> - BMA250E,
> };
>
> struct bma180_data;
> @@ -56,7 +55,6 @@ struct bma180_part_info {
> u8 power_reg, power_mask, lowpower_val;
> u8 int_enable_reg, int_enable_mask;
> u8 softreset_reg;
> - u8 chip_id;
>
> int (*chip_config)(struct bma180_data *data);
> void (*chip_disable)(struct bma180_data *data);
> @@ -114,8 +112,6 @@ struct bma180_part_info {
> #define BMA250_INT1_DATA_MASK BIT(0)
> #define BMA250_INT_RESET_MASK BIT(7) /* Reset pending interrupts */
>
> -#define BMA250E_CHIP_ID 0xf9
> -
> struct bma180_data {
> struct i2c_client *client;
> struct iio_trigger *trig;
> @@ -313,7 +309,7 @@ static int bma180_chip_init(struct bma180_data *data)
>
> if (ret < 0)
> return ret;
> - if (ret != data->part_info->chip_id)
> + if (ret != BMA180_ID_REG_VAL)
> return -ENODEV;
>
> ret = bma180_soft_reset(data);
> @@ -636,7 +632,6 @@ static const struct bma180_part_info bma180_part_info[] = {
> BMA180_TCO_Z, BMA180_MODE_CONFIG, BMA180_LOW_POWER,
> BMA180_CTRL_REG3, BMA180_NEW_DATA_INT,
> BMA180_RESET,
> - BMA180_CHIP_ID,
> bma180_chip_config,
> bma180_chip_disable,
> },
> @@ -651,22 +646,6 @@ static const struct bma180_part_info bma180_part_info[] = {
> BMA250_POWER_REG, BMA250_LOWPOWER_MASK, 1,
> BMA250_INT_ENABLE_REG, BMA250_DATA_INTEN_MASK,
> BMA250_RESET_REG,
> - BMA180_CHIP_ID,
> - bma250_chip_config,
> - bma250_chip_disable,
> - },
> - [BMA250E] = {
> - bma250_channels, ARRAY_SIZE(bma250_channels),
> - bma250_scale_table, ARRAY_SIZE(bma250_scale_table),
> - bma250_bw_table, ARRAY_SIZE(bma250_bw_table),
> - BMA250_INT_RESET_REG, BMA250_INT_RESET_MASK,
> - BMA250_POWER_REG, BMA250_SUSPEND_MASK,
> - BMA250_BW_REG, BMA250_BW_MASK,
> - BMA250_RANGE_REG, BMA250_RANGE_MASK,
> - BMA250_POWER_REG, BMA250_LOWPOWER_MASK, 1,
> - BMA250_INT_ENABLE_REG, BMA250_DATA_INTEN_MASK,
> - BMA250_RESET_REG,
> - BMA250E_CHIP_ID,
> bma250_chip_config,
> bma250_chip_disable,
> },
> @@ -866,7 +845,6 @@ static SIMPLE_DEV_PM_OPS(bma180_pm_ops, bma180_suspend, bma180_resume);
> static struct i2c_device_id bma180_ids[] = {
> { "bma180", BMA180 },
> { "bma250", BMA250 },
> - { "bma250e", BMA250E },
> { }
> };
>
prev parent reply other threads:[~2017-06-11 13:54 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-06 20:35 [PATCH 0/2] Revert "iio: accel: bma180: Add support for BMA250E" Hans de Goede
2017-06-06 20:35 ` [PATCH 1/2] Revert "iio: accel: bma180: Add ACPI enumeration " Hans de Goede
2017-06-11 13:53 ` Jonathan Cameron
2017-06-06 20:35 ` [PATCH 2/2] Revert "iio: accel: bma180: Add " Hans de Goede
2017-06-11 13:53 ` Jonathan Cameron [this message]
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=20170611145358.7bf8cd12@kernel.org \
--to=jic23@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=hdegoede@redhat.com \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=pmeerw@pmeerw.net \
/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).