Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348180
b: refs/heads/master
c: 5a167f4
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jan 3, 2013
1 parent 002d05d commit 209005f
Show file tree
Hide file tree
Showing 71 changed files with 210 additions and 215 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6f039790510fd630ff348efe8c4802dbaa041fba
refs/heads/master: 5a167f4543e45d45c5672a5cd6cb8ba5ddf4f3ea
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-88pm80x.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ static int pm80x_rtc_resume(struct device *dev)

static SIMPLE_DEV_PM_OPS(pm80x_rtc_pm_ops, pm80x_rtc_suspend, pm80x_rtc_resume);

static int __devinit pm80x_rtc_probe(struct platform_device *pdev)
static int pm80x_rtc_probe(struct platform_device *pdev)
{
struct pm80x_chip *chip = dev_get_drvdata(pdev->dev.parent);
struct pm80x_platform_data *pm80x_pdata;
Expand Down Expand Up @@ -342,7 +342,7 @@ static int __devinit pm80x_rtc_probe(struct platform_device *pdev)
return ret;
}

static int __devexit pm80x_rtc_remove(struct platform_device *pdev)
static int pm80x_rtc_remove(struct platform_device *pdev)
{
struct pm80x_rtc_info *info = platform_get_drvdata(pdev);
platform_set_drvdata(pdev, NULL);
Expand All @@ -358,7 +358,7 @@ static struct platform_driver pm80x_rtc_driver = {
.pm = &pm80x_rtc_pm_ops,
},
.probe = pm80x_rtc_probe,
.remove = __devexit_p(pm80x_rtc_remove),
.remove = pm80x_rtc_remove,
};

module_platform_driver(pm80x_rtc_driver);
Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/rtc/rtc-88pm860x.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ static void calibrate_vrtc_work(struct work_struct *work)
#endif

#ifdef CONFIG_OF
static int __devinit pm860x_rtc_dt_init(struct platform_device *pdev,
struct pm860x_rtc_info *info)
static int pm860x_rtc_dt_init(struct platform_device *pdev,
struct pm860x_rtc_info *info)
{
struct device_node *np = pdev->dev.parent->of_node;
int ret;
Expand All @@ -307,7 +307,7 @@ static int __devinit pm860x_rtc_dt_init(struct platform_device *pdev,
#define pm860x_rtc_dt_init(x, y) (-1)
#endif

static int __devinit pm860x_rtc_probe(struct platform_device *pdev)
static int pm860x_rtc_probe(struct platform_device *pdev)
{
struct pm860x_chip *chip = dev_get_drvdata(pdev->dev.parent);
struct pm860x_rtc_pdata *pdata = NULL;
Expand Down Expand Up @@ -412,7 +412,7 @@ static int __devinit pm860x_rtc_probe(struct platform_device *pdev)
return ret;
}

static int __devexit pm860x_rtc_remove(struct platform_device *pdev)
static int pm860x_rtc_remove(struct platform_device *pdev)
{
struct pm860x_rtc_info *info = platform_get_drvdata(pdev);

Expand Down Expand Up @@ -459,7 +459,7 @@ static struct platform_driver pm860x_rtc_driver = {
.pm = &pm860x_rtc_pm_ops,
},
.probe = pm860x_rtc_probe,
.remove = __devexit_p(pm860x_rtc_remove),
.remove = pm860x_rtc_remove,
};

module_platform_driver(pm860x_rtc_driver);
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-ab8500.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ static const struct rtc_class_ops ab8500_rtc_ops = {
.alarm_irq_enable = ab8500_rtc_irq_enable,
};

static int __devinit ab8500_rtc_probe(struct platform_device *pdev)
static int ab8500_rtc_probe(struct platform_device *pdev)
{
int err;
struct rtc_device *rtc;
Expand Down Expand Up @@ -448,7 +448,7 @@ static int __devinit ab8500_rtc_probe(struct platform_device *pdev)
return 0;
}

static int __devexit ab8500_rtc_remove(struct platform_device *pdev)
static int ab8500_rtc_remove(struct platform_device *pdev)
{
struct rtc_device *rtc = platform_get_drvdata(pdev);
int irq = platform_get_irq_byname(pdev, "ALARM");
Expand All @@ -468,7 +468,7 @@ static struct platform_driver ab8500_rtc_driver = {
.owner = THIS_MODULE,
},
.probe = ab8500_rtc_probe,
.remove = __devexit_p(ab8500_rtc_remove),
.remove = ab8500_rtc_remove,
};

module_platform_driver(ab8500_rtc_driver);
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-at91sam9.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ static const struct rtc_class_ops at91_rtc_ops = {
/*
* Initialize and install RTC driver
*/
static int __devinit at91_rtc_probe(struct platform_device *pdev)
static int at91_rtc_probe(struct platform_device *pdev)
{
struct resource *r, *r_gpbr;
struct sam9_rtc *rtc;
Expand Down Expand Up @@ -387,7 +387,7 @@ static int __devinit at91_rtc_probe(struct platform_device *pdev)
/*
* Disable and remove the RTC driver
*/
static int __devexit at91_rtc_remove(struct platform_device *pdev)
static int at91_rtc_remove(struct platform_device *pdev)
{
struct sam9_rtc *rtc = platform_get_drvdata(pdev);
u32 mr = rtt_readl(rtc, MR);
Expand Down Expand Up @@ -463,7 +463,7 @@ static int at91_rtc_resume(struct platform_device *pdev)

static struct platform_driver at91_rtc_driver = {
.probe = at91_rtc_probe,
.remove = __devexit_p(at91_rtc_remove),
.remove = at91_rtc_remove,
.shutdown = at91_rtc_shutdown,
.suspend = at91_rtc_suspend,
.resume = at91_rtc_resume,
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-au1xxx.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static struct rtc_class_ops au1xtoy_rtc_ops = {
.set_time = au1xtoy_rtc_set_time,
};

static int __devinit au1xtoy_rtc_probe(struct platform_device *pdev)
static int au1xtoy_rtc_probe(struct platform_device *pdev)
{
struct rtc_device *rtcdev;
unsigned long t;
Expand Down Expand Up @@ -116,7 +116,7 @@ static int __devinit au1xtoy_rtc_probe(struct platform_device *pdev)
return ret;
}

static int __devexit au1xtoy_rtc_remove(struct platform_device *pdev)
static int au1xtoy_rtc_remove(struct platform_device *pdev)
{
struct rtc_device *rtcdev = platform_get_drvdata(pdev);

Expand All @@ -131,7 +131,7 @@ static struct platform_driver au1xrtc_driver = {
.name = "rtc-au1xxx",
.owner = THIS_MODULE,
},
.remove = __devexit_p(au1xtoy_rtc_remove),
.remove = au1xtoy_rtc_remove,
};

static int __init au1xtoy_rtc_init(void)
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-bfin.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ static struct rtc_class_ops bfin_rtc_ops = {
.alarm_irq_enable = bfin_rtc_alarm_irq_enable,
};

static int __devinit bfin_rtc_probe(struct platform_device *pdev)
static int bfin_rtc_probe(struct platform_device *pdev)
{
struct bfin_rtc *rtc;
struct device *dev = &pdev->dev;
Expand Down Expand Up @@ -388,7 +388,7 @@ static int __devinit bfin_rtc_probe(struct platform_device *pdev)
return ret;
}

static int __devexit bfin_rtc_remove(struct platform_device *pdev)
static int bfin_rtc_remove(struct platform_device *pdev)
{
struct bfin_rtc *rtc = platform_get_drvdata(pdev);
struct device *dev = &pdev->dev;
Expand Down Expand Up @@ -451,7 +451,7 @@ static struct platform_driver bfin_rtc_driver = {
.owner = THIS_MODULE,
},
.probe = bfin_rtc_probe,
.remove = __devexit_p(bfin_rtc_remove),
.remove = bfin_rtc_remove,
.suspend = bfin_rtc_suspend,
.resume = bfin_rtc_resume,
};
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/rtc/rtc-bq32k.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ static int bq32k_probe(struct i2c_client *client,
return 0;
}

static int __devexit bq32k_remove(struct i2c_client *client)
static int bq32k_remove(struct i2c_client *client)
{
struct rtc_device *rtc = i2c_get_clientdata(client);

Expand All @@ -183,7 +183,7 @@ static struct i2c_driver bq32k_driver = {
.owner = THIS_MODULE,
},
.probe = bq32k_probe,
.remove = __devexit_p(bq32k_remove),
.remove = bq32k_remove,
.id_table = bq32k_id,
};

Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-bq4802.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ static const struct rtc_class_ops bq4802_ops = {
.set_time = bq4802_set_time,
};

static int __devinit bq4802_probe(struct platform_device *pdev)
static int bq4802_probe(struct platform_device *pdev)
{
struct bq4802 *p = kzalloc(sizeof(*p), GFP_KERNEL);
int err = -ENOMEM;
Expand Down Expand Up @@ -191,7 +191,7 @@ static int __devinit bq4802_probe(struct platform_device *pdev)
goto out;
}

static int __devexit bq4802_remove(struct platform_device *pdev)
static int bq4802_remove(struct platform_device *pdev)
{
struct bq4802 *p = platform_get_drvdata(pdev);

Expand All @@ -215,7 +215,7 @@ static struct platform_driver bq4802_driver = {
.owner = THIS_MODULE,
},
.probe = bq4802_probe,
.remove = __devexit_p(bq4802_remove),
.remove = bq4802_remove,
};

module_platform_driver(bq4802_driver);
9 changes: 3 additions & 6 deletions trunk/drivers/rtc/rtc-cmos.c
Original file line number Diff line number Diff line change
Expand Up @@ -947,8 +947,7 @@ static void rtc_wake_off(struct device *dev)
*/
static struct cmos_rtc_board_info acpi_rtc_info;

static void __devinit
cmos_wake_setup(struct device *dev)
static void cmos_wake_setup(struct device *dev)
{
if (acpi_disabled)
return;
Expand Down Expand Up @@ -980,8 +979,7 @@ cmos_wake_setup(struct device *dev)

#else

static void __devinit
cmos_wake_setup(struct device *dev)
static void cmos_wake_setup(struct device *dev)
{
}

Expand All @@ -991,8 +989,7 @@ cmos_wake_setup(struct device *dev)

#include <linux/pnp.h>

static int __devinit
cmos_pnp_probe(struct pnp_dev *pnp, const struct pnp_device_id *id)
static int cmos_pnp_probe(struct pnp_dev *pnp, const struct pnp_device_id *id)
{
cmos_wake_setup(&pnp->dev);

Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-da9052.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ static const struct rtc_class_ops da9052_rtc_ops = {
.alarm_irq_enable = da9052_rtc_alarm_irq_enable,
};

static int __devinit da9052_rtc_probe(struct platform_device *pdev)
static int da9052_rtc_probe(struct platform_device *pdev)
{
struct da9052_rtc *rtc;
int ret;
Expand Down Expand Up @@ -262,7 +262,7 @@ static int __devinit da9052_rtc_probe(struct platform_device *pdev)
return ret;
}

static int __devexit da9052_rtc_remove(struct platform_device *pdev)
static int da9052_rtc_remove(struct platform_device *pdev)
{
struct da9052_rtc *rtc = pdev->dev.platform_data;

Expand All @@ -275,7 +275,7 @@ static int __devexit da9052_rtc_remove(struct platform_device *pdev)

static struct platform_driver da9052_rtc_driver = {
.probe = da9052_rtc_probe,
.remove = __devexit_p(da9052_rtc_remove),
.remove = da9052_rtc_remove,
.driver = {
.name = "da9052-rtc",
.owner = THIS_MODULE,
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/rtc/rtc-davinci.c
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ static int __init davinci_rtc_probe(struct platform_device *pdev)
return ret;
}

static int __devexit davinci_rtc_remove(struct platform_device *pdev)
static int davinci_rtc_remove(struct platform_device *pdev)
{
struct davinci_rtc *davinci_rtc = platform_get_drvdata(pdev);

Expand All @@ -589,7 +589,7 @@ static int __devexit davinci_rtc_remove(struct platform_device *pdev)

static struct platform_driver davinci_rtc_driver = {
.probe = davinci_rtc_probe,
.remove = __devexit_p(davinci_rtc_remove),
.remove = davinci_rtc_remove,
.driver = {
.name = "rtc_davinci",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-dm355evm.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ static struct rtc_class_ops dm355evm_rtc_ops = {

/*----------------------------------------------------------------------*/

static int __devinit dm355evm_rtc_probe(struct platform_device *pdev)
static int dm355evm_rtc_probe(struct platform_device *pdev)
{
struct rtc_device *rtc;

Expand All @@ -139,7 +139,7 @@ static int __devinit dm355evm_rtc_probe(struct platform_device *pdev)
return 0;
}

static int __devexit dm355evm_rtc_remove(struct platform_device *pdev)
static int dm355evm_rtc_remove(struct platform_device *pdev)
{
struct rtc_device *rtc = platform_get_drvdata(pdev);

Expand All @@ -154,7 +154,7 @@ static int __devexit dm355evm_rtc_remove(struct platform_device *pdev)
*/
static struct platform_driver rtc_dm355evm_driver = {
.probe = dm355evm_rtc_probe,
.remove = __devexit_p(dm355evm_rtc_remove),
.remove = dm355evm_rtc_remove,
.driver = {
.owner = THIS_MODULE,
.name = "rtc-dm355evm",
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-ds1286.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ static const struct rtc_class_ops ds1286_ops = {
.alarm_irq_enable = ds1286_alarm_irq_enable,
};

static int __devinit ds1286_probe(struct platform_device *pdev)
static int ds1286_probe(struct platform_device *pdev)
{
struct rtc_device *rtc;
struct resource *res;
Expand Down Expand Up @@ -376,7 +376,7 @@ static int __devinit ds1286_probe(struct platform_device *pdev)
return ret;
}

static int __devexit ds1286_remove(struct platform_device *pdev)
static int ds1286_remove(struct platform_device *pdev)
{
struct ds1286_priv *priv = platform_get_drvdata(pdev);

Expand All @@ -393,7 +393,7 @@ static struct platform_driver ds1286_platform_driver = {
.owner = THIS_MODULE,
},
.probe = ds1286_probe,
.remove = __devexit_p(ds1286_remove),
.remove = ds1286_remove,
};

module_platform_driver(ds1286_platform_driver);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/rtc/rtc-ds1302.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ static int __init ds1302_rtc_probe(struct platform_device *pdev)
return 0;
}

static int __devexit ds1302_rtc_remove(struct platform_device *pdev)
static int ds1302_rtc_remove(struct platform_device *pdev)
{
struct rtc_device *rtc = platform_get_drvdata(pdev);

Expand All @@ -249,7 +249,7 @@ static struct platform_driver ds1302_platform_driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
},
.remove = __devexit_p(ds1302_rtc_remove),
.remove = ds1302_rtc_remove,
};

static int __init ds1302_rtc_init(void)
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/rtc/rtc-ds1305.c
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ static struct bin_attribute nvram = {
* Interface to SPI stack
*/

static int __devinit ds1305_probe(struct spi_device *spi)
static int ds1305_probe(struct spi_device *spi)
{
struct ds1305 *ds1305;
int status;
Expand Down Expand Up @@ -787,7 +787,7 @@ static int __devinit ds1305_probe(struct spi_device *spi)
return status;
}

static int __devexit ds1305_remove(struct spi_device *spi)
static int ds1305_remove(struct spi_device *spi)
{
struct ds1305 *ds1305 = spi_get_drvdata(spi);

Expand All @@ -810,7 +810,7 @@ static struct spi_driver ds1305_driver = {
.driver.name = "rtc-ds1305",
.driver.owner = THIS_MODULE,
.probe = ds1305_probe,
.remove = __devexit_p(ds1305_remove),
.remove = ds1305_remove,
/* REVISIT add suspend/resume */
};

Expand Down
Loading

0 comments on commit 209005f

Please sign in to comment.