You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
of/device: Replace struct of_device with struct platform_device
of_device is just an alias for platform_device, so remove it entirely. Also replace to_of_device() with to_platform_device() and update comment blocks. This patch was initially generated from the following semantic patch, and then edited by hand to pick up the bits that coccinelle didn't catch. @@ @@ -struct of_device +struct platform_device Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Reviewed-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -680,7 +680,7 @@ mpc52xx_ata_remove_one(struct device *dev)
|
||||
/* ======================================================================== */
|
||||
|
||||
static int __devinit
|
||||
mpc52xx_ata_probe(struct of_device *op, const struct of_device_id *match)
|
||||
mpc52xx_ata_probe(struct platform_device *op, const struct of_device_id *match)
|
||||
{
|
||||
unsigned int ipb_freq;
|
||||
struct resource res_mem;
|
||||
@@ -821,7 +821,7 @@ mpc52xx_ata_probe(struct of_device *op, const struct of_device_id *match)
|
||||
}
|
||||
|
||||
static int
|
||||
mpc52xx_ata_remove(struct of_device *op)
|
||||
mpc52xx_ata_remove(struct platform_device *op)
|
||||
{
|
||||
struct mpc52xx_ata_priv *priv;
|
||||
int task_irq;
|
||||
@@ -848,7 +848,7 @@ mpc52xx_ata_remove(struct of_device *op)
|
||||
#ifdef CONFIG_PM
|
||||
|
||||
static int
|
||||
mpc52xx_ata_suspend(struct of_device *op, pm_message_t state)
|
||||
mpc52xx_ata_suspend(struct platform_device *op, pm_message_t state)
|
||||
{
|
||||
struct ata_host *host = dev_get_drvdata(&op->dev);
|
||||
|
||||
@@ -856,7 +856,7 @@ mpc52xx_ata_suspend(struct of_device *op, pm_message_t state)
|
||||
}
|
||||
|
||||
static int
|
||||
mpc52xx_ata_resume(struct of_device *op)
|
||||
mpc52xx_ata_resume(struct platform_device *op)
|
||||
{
|
||||
struct ata_host *host = dev_get_drvdata(&op->dev);
|
||||
struct mpc52xx_ata_priv *priv = host->private_data;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
#include <linux/of_platform.h>
|
||||
#include <linux/ata_platform.h>
|
||||
|
||||
static int __devinit pata_of_platform_probe(struct of_device *ofdev,
|
||||
static int __devinit pata_of_platform_probe(struct platform_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
int ret;
|
||||
@@ -78,7 +78,7 @@ static int __devinit pata_of_platform_probe(struct of_device *ofdev,
|
||||
reg_shift, pio_mask);
|
||||
}
|
||||
|
||||
static int __devexit pata_of_platform_remove(struct of_device *ofdev)
|
||||
static int __devexit pata_of_platform_remove(struct platform_device *ofdev)
|
||||
{
|
||||
return __pata_platform_remove(&ofdev->dev);
|
||||
}
|
||||
|
||||
@@ -1296,7 +1296,7 @@ static const struct ata_port_info sata_fsl_port_info[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static int sata_fsl_probe(struct of_device *ofdev,
|
||||
static int sata_fsl_probe(struct platform_device *ofdev,
|
||||
const struct of_device_id *match)
|
||||
{
|
||||
int retval = -ENXIO;
|
||||
@@ -1370,7 +1370,7 @@ error_exit_with_cleanup:
|
||||
return retval;
|
||||
}
|
||||
|
||||
static int sata_fsl_remove(struct of_device *ofdev)
|
||||
static int sata_fsl_remove(struct platform_device *ofdev)
|
||||
{
|
||||
struct ata_host *host = dev_get_drvdata(&ofdev->dev);
|
||||
struct sata_fsl_host_priv *host_priv = host->private_data;
|
||||
@@ -1387,13 +1387,13 @@ static int sata_fsl_remove(struct of_device *ofdev)
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
static int sata_fsl_suspend(struct of_device *op, pm_message_t state)
|
||||
static int sata_fsl_suspend(struct platform_device *op, pm_message_t state)
|
||||
{
|
||||
struct ata_host *host = dev_get_drvdata(&op->dev);
|
||||
return ata_host_suspend(host, state);
|
||||
}
|
||||
|
||||
static int sata_fsl_resume(struct of_device *op)
|
||||
static int sata_fsl_resume(struct platform_device *op)
|
||||
{
|
||||
struct ata_host *host = dev_get_drvdata(&op->dev);
|
||||
struct sata_fsl_host_priv *host_priv = host->private_data;
|
||||
|
||||
Reference in New Issue
Block a user