forked from Minki/linux
mfd: Transfer rtc max8925 irq from MFD defined resources
MAX8925 rtc irq is transfered from mfd resources now. Signed-off-by: Haojian Zhuang <haojian.zhuang@gmail.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
b673e24c0a
commit
c1a2f31dfe
@ -75,9 +75,9 @@ static struct mfd_cell power_devs[] = {
|
|||||||
static struct resource rtc_resources[] = {
|
static struct resource rtc_resources[] = {
|
||||||
{
|
{
|
||||||
.name = "max8925-rtc",
|
.name = "max8925-rtc",
|
||||||
.start = MAX8925_RTC_IRQ,
|
.start = MAX8925_IRQ_RTC_ALARM0,
|
||||||
.end = MAX8925_RTC_IRQ_MASK,
|
.end = MAX8925_IRQ_RTC_ALARM0,
|
||||||
.flags = IORESOURCE_IO,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -598,7 +598,7 @@ int __devinit max8925_device_init(struct max8925_chip *chip,
|
|||||||
|
|
||||||
ret = mfd_add_devices(chip->dev, 0, &rtc_devs[0],
|
ret = mfd_add_devices(chip->dev, 0, &rtc_devs[0],
|
||||||
ARRAY_SIZE(rtc_devs),
|
ARRAY_SIZE(rtc_devs),
|
||||||
&rtc_resources[0], 0);
|
&rtc_resources[0], chip->irq_base);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(chip->dev, "Failed to add rtc subdev\n");
|
dev_err(chip->dev, "Failed to add rtc subdev\n");
|
||||||
goto out;
|
goto out;
|
||||||
|
@ -69,6 +69,7 @@ struct max8925_rtc_info {
|
|||||||
struct max8925_chip *chip;
|
struct max8925_chip *chip;
|
||||||
struct i2c_client *rtc;
|
struct i2c_client *rtc;
|
||||||
struct device *dev;
|
struct device *dev;
|
||||||
|
int irq;
|
||||||
};
|
};
|
||||||
|
|
||||||
static irqreturn_t rtc_update_handler(int irq, void *data)
|
static irqreturn_t rtc_update_handler(int irq, void *data)
|
||||||
@ -250,7 +251,7 @@ static int __devinit max8925_rtc_probe(struct platform_device *pdev)
|
|||||||
{
|
{
|
||||||
struct max8925_chip *chip = dev_get_drvdata(pdev->dev.parent);
|
struct max8925_chip *chip = dev_get_drvdata(pdev->dev.parent);
|
||||||
struct max8925_rtc_info *info;
|
struct max8925_rtc_info *info;
|
||||||
int irq, ret;
|
int ret;
|
||||||
|
|
||||||
info = kzalloc(sizeof(struct max8925_rtc_info), GFP_KERNEL);
|
info = kzalloc(sizeof(struct max8925_rtc_info), GFP_KERNEL);
|
||||||
if (!info)
|
if (!info)
|
||||||
@ -258,13 +259,13 @@ static int __devinit max8925_rtc_probe(struct platform_device *pdev)
|
|||||||
info->chip = chip;
|
info->chip = chip;
|
||||||
info->rtc = chip->rtc;
|
info->rtc = chip->rtc;
|
||||||
info->dev = &pdev->dev;
|
info->dev = &pdev->dev;
|
||||||
irq = chip->irq_base + MAX8925_IRQ_RTC_ALARM0;
|
info->irq = platform_get_irq(pdev, 0);
|
||||||
|
|
||||||
ret = request_threaded_irq(irq, NULL, rtc_update_handler,
|
ret = request_threaded_irq(info->irq, NULL, rtc_update_handler,
|
||||||
IRQF_ONESHOT, "rtc-alarm0", info);
|
IRQF_ONESHOT, "rtc-alarm0", info);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(chip->dev, "Failed to request IRQ: #%d: %d\n",
|
dev_err(chip->dev, "Failed to request IRQ: #%d: %d\n",
|
||||||
irq, ret);
|
info->irq, ret);
|
||||||
goto out_irq;
|
goto out_irq;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,7 +286,7 @@ static int __devinit max8925_rtc_probe(struct platform_device *pdev)
|
|||||||
return 0;
|
return 0;
|
||||||
out_rtc:
|
out_rtc:
|
||||||
platform_set_drvdata(pdev, NULL);
|
platform_set_drvdata(pdev, NULL);
|
||||||
free_irq(chip->irq_base + MAX8925_IRQ_RTC_ALARM0, info);
|
free_irq(info->irq, info);
|
||||||
out_irq:
|
out_irq:
|
||||||
kfree(info);
|
kfree(info);
|
||||||
return ret;
|
return ret;
|
||||||
@ -296,7 +297,7 @@ static int __devexit max8925_rtc_remove(struct platform_device *pdev)
|
|||||||
struct max8925_rtc_info *info = platform_get_drvdata(pdev);
|
struct max8925_rtc_info *info = platform_get_drvdata(pdev);
|
||||||
|
|
||||||
if (info) {
|
if (info) {
|
||||||
free_irq(info->chip->irq_base + MAX8925_IRQ_RTC_ALARM0, info);
|
free_irq(info->irq, info);
|
||||||
rtc_device_unregister(info->rtc_dev);
|
rtc_device_unregister(info->rtc_dev);
|
||||||
kfree(info);
|
kfree(info);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user