All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] wm97xx_batt: Remove deprecated method to set pdata
@ 2010-06-12 12:51 Marek Vasut
  2010-06-12 17:21 ` Mark Brown
  0 siblings, 1 reply; 5+ messages in thread
From: Marek Vasut @ 2010-06-12 12:51 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
---
 drivers/power/wm97xx_battery.c |   16 ----------------
 1 files changed, 0 insertions(+), 16 deletions(-)

diff --git a/drivers/power/wm97xx_battery.c b/drivers/power/wm97xx_battery.c
index 4e8afce..5071d85 100644
--- a/drivers/power/wm97xx_battery.c
+++ b/drivers/power/wm97xx_battery.c
@@ -29,7 +29,6 @@ static DEFINE_MUTEX(bat_lock);
 static struct work_struct bat_work;
 static struct mutex work_lock;
 static int bat_status = POWER_SUPPLY_STATUS_UNKNOWN;
-static struct wm97xx_batt_info *gpdata;
 static enum power_supply_property *prop;
 
 static unsigned long wm97xx_read_bat(struct power_supply *bat_ps)
@@ -172,12 +171,6 @@ static int __devinit wm97xx_bat_probe(struct platform_device *dev)
 	struct wm97xx_pdata *wmdata = dev->dev.platform_data;
 	struct wm97xx_batt_pdata *pdata;
 
-	if (gpdata) {
-		dev_err(&dev->dev, "Do not pass platform_data through "
-			"wm97xx_bat_set_pdata!\n");
-		return -EINVAL;
-	}
-
 	if (!wmdata) {
 		dev_err(&dev->dev, "No platform data supplied\n");
 		return -EINVAL;
@@ -308,15 +301,6 @@ static void __exit wm97xx_bat_exit(void)
 	platform_driver_unregister(&wm97xx_bat_driver);
 }
 
-/* The interface is deprecated, as well as linux/wm97xx_batt.h */
-void wm97xx_bat_set_pdata(struct wm97xx_batt_info *data);
-
-void wm97xx_bat_set_pdata(struct wm97xx_batt_info *data)
-{
-	gpdata = data;
-}
-EXPORT_SYMBOL_GPL(wm97xx_bat_set_pdata);
-
 module_init(wm97xx_bat_init);
 module_exit(wm97xx_bat_exit);
 
-- 
1.7.1

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

* [PATCH] wm97xx_batt: Remove deprecated method to set pdata
  2010-06-12 12:51 [PATCH] wm97xx_batt: Remove deprecated method to set pdata Marek Vasut
@ 2010-06-12 17:21 ` Mark Brown
  2010-06-13  2:33   ` Eric Miao
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Brown @ 2010-06-12 17:21 UTC (permalink / raw)
  To: linux-arm-kernel

On Sat, Jun 12, 2010 at 02:51:13PM +0200, Marek Vasut wrote:
> Signed-off-by: Marek Vasut <marek.vasut@gmail.com>

Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>

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

* [PATCH] wm97xx_batt: Remove deprecated method to set pdata
  2010-06-12 17:21 ` Mark Brown
@ 2010-06-13  2:33   ` Eric Miao
  2010-06-13  6:50     ` Marek Vasut
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Miao @ 2010-06-13  2:33 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Jun 13, 2010 at 1:21 AM, Mark Brown
<broonie@opensource.wolfsonmicro.com> wrote:
> On Sat, Jun 12, 2010 at 02:51:13PM +0200, Marek Vasut wrote:
>> Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
>
> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
>

Thanks. Applied.

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

* [PATCH] wm97xx_batt: Remove deprecated method to set pdata
  2010-06-13  2:33   ` Eric Miao
@ 2010-06-13  6:50     ` Marek Vasut
  2010-06-13  7:01       ` Eric Miao
  0 siblings, 1 reply; 5+ messages in thread
From: Marek Vasut @ 2010-06-13  6:50 UTC (permalink / raw)
  To: linux-arm-kernel

Dne Ne 13. ?ervna 2010 04:33:11 Eric Miao napsal(a):
> On Sun, Jun 13, 2010 at 1:21 AM, Mark Brown
> 
> <broonie@opensource.wolfsonmicro.com> wrote:
> > On Sat, Jun 12, 2010 at 02:51:13PM +0200, Marek Vasut wrote:
> >> Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> > 
> > Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> 
> Thanks. Applied.

Please also apply the other one (the one removing linux/wm97xx_batt.h)

Thanks!

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

* [PATCH] wm97xx_batt: Remove deprecated method to set pdata
  2010-06-13  6:50     ` Marek Vasut
@ 2010-06-13  7:01       ` Eric Miao
  0 siblings, 0 replies; 5+ messages in thread
From: Eric Miao @ 2010-06-13  7:01 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Jun 13, 2010 at 2:50 PM, Marek Vasut <marek.vasut@gmail.com> wrote:
> Dne Ne 13. ?ervna 2010 04:33:11 Eric Miao napsal(a):
>> On Sun, Jun 13, 2010 at 1:21 AM, Mark Brown
>>
>> <broonie@opensource.wolfsonmicro.com> wrote:
>> > On Sat, Jun 12, 2010 at 02:51:13PM +0200, Marek Vasut wrote:
>> >> Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
>> >
>> > Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
>>
>> Thanks. Applied.
>
> Please also apply the other one (the one removing linux/wm97xx_batt.h)
>

They are merged.

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

end of thread, other threads:[~2010-06-13  7:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-12 12:51 [PATCH] wm97xx_batt: Remove deprecated method to set pdata Marek Vasut
2010-06-12 17:21 ` Mark Brown
2010-06-13  2:33   ` Eric Miao
2010-06-13  6:50     ` Marek Vasut
2010-06-13  7:01       ` Eric Miao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.