powerpc: remove references to of_device and to_of_device
of_device is just a #define alias to platform_device. This patch replaces all references to it with platform_device. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
@@ -140,19 +140,19 @@ static struct dma_map_ops ibmebus_dma_ops = {
|
|||||||
|
|
||||||
static int ibmebus_match_path(struct device *dev, void *data)
|
static int ibmebus_match_path(struct device *dev, void *data)
|
||||||
{
|
{
|
||||||
struct device_node *dn = to_of_device(dev)->dev.of_node;
|
struct device_node *dn = to_platform_device(dev)->dev.of_node;
|
||||||
return (dn->full_name &&
|
return (dn->full_name &&
|
||||||
(strcasecmp((char *)data, dn->full_name) == 0));
|
(strcasecmp((char *)data, dn->full_name) == 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ibmebus_match_node(struct device *dev, void *data)
|
static int ibmebus_match_node(struct device *dev, void *data)
|
||||||
{
|
{
|
||||||
return to_of_device(dev)->dev.of_node == data;
|
return to_platform_device(dev)->dev.of_node == data;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ibmebus_create_device(struct device_node *dn)
|
static int ibmebus_create_device(struct device_node *dn)
|
||||||
{
|
{
|
||||||
struct of_device *dev;
|
struct platform_device *dev;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
dev = of_device_alloc(dn, NULL, &ibmebus_bus_device);
|
dev = of_device_alloc(dn, NULL, &ibmebus_bus_device);
|
||||||
@@ -298,7 +298,7 @@ static ssize_t ibmebus_store_remove(struct bus_type *bus,
|
|||||||
|
|
||||||
if ((dev = bus_find_device(&ibmebus_bus_type, NULL, path,
|
if ((dev = bus_find_device(&ibmebus_bus_type, NULL, path,
|
||||||
ibmebus_match_path))) {
|
ibmebus_match_path))) {
|
||||||
of_device_unregister(to_of_device(dev));
|
of_device_unregister(to_platform_device(dev));
|
||||||
|
|
||||||
kfree(path);
|
kfree(path);
|
||||||
return count;
|
return count;
|
||||||
|
@@ -54,16 +54,16 @@ const struct of_device_id of_default_bus_ids[] = {
|
|||||||
|
|
||||||
static int of_dev_node_match(struct device *dev, void *data)
|
static int of_dev_node_match(struct device *dev, void *data)
|
||||||
{
|
{
|
||||||
return to_of_device(dev)->dev.of_node == data;
|
return to_platform_device(dev)->dev.of_node == data;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct of_device *of_find_device_by_node(struct device_node *np)
|
struct platform_device *of_find_device_by_node(struct device_node *np)
|
||||||
{
|
{
|
||||||
struct device *dev;
|
struct device *dev;
|
||||||
|
|
||||||
dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match);
|
dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match);
|
||||||
if (dev)
|
if (dev)
|
||||||
return to_of_device(dev);
|
return to_platform_device(dev);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(of_find_device_by_node);
|
EXPORT_SYMBOL(of_find_device_by_node);
|
||||||
@@ -76,7 +76,7 @@ EXPORT_SYMBOL(of_find_device_by_node);
|
|||||||
* lacking some bits needed here.
|
* lacking some bits needed here.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static int __devinit of_pci_phb_probe(struct of_device *dev,
|
static int __devinit of_pci_phb_probe(struct platform_device *dev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct pci_controller *phb;
|
struct pci_controller *phb;
|
||||||
|
@@ -660,7 +660,7 @@ static void psc_clks_init(void)
|
|||||||
{
|
{
|
||||||
struct device_node *np;
|
struct device_node *np;
|
||||||
const u32 *cell_index;
|
const u32 *cell_index;
|
||||||
struct of_device *ofdev;
|
struct platform_device *ofdev;
|
||||||
|
|
||||||
for_each_compatible_node(np, NULL, "fsl,mpc5121-psc") {
|
for_each_compatible_node(np, NULL, "fsl,mpc5121-psc") {
|
||||||
cell_index = of_get_property(np, "cell-index", NULL);
|
cell_index = of_get_property(np, "cell-index", NULL);
|
||||||
|
@@ -147,7 +147,7 @@ mpc52xx_wkup_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devinit mpc52xx_wkup_gpiochip_probe(struct of_device *ofdev,
|
static int __devinit mpc52xx_wkup_gpiochip_probe(struct platform_device *ofdev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct mpc52xx_gpiochip *chip;
|
struct mpc52xx_gpiochip *chip;
|
||||||
@@ -179,7 +179,7 @@ static int __devinit mpc52xx_wkup_gpiochip_probe(struct of_device *ofdev,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mpc52xx_gpiochip_remove(struct of_device *ofdev)
|
static int mpc52xx_gpiochip_remove(struct platform_device *ofdev)
|
||||||
{
|
{
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
@@ -310,7 +310,7 @@ mpc52xx_simple_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devinit mpc52xx_simple_gpiochip_probe(struct of_device *ofdev,
|
static int __devinit mpc52xx_simple_gpiochip_probe(struct platform_device *ofdev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct mpc52xx_gpiochip *chip;
|
struct mpc52xx_gpiochip *chip;
|
||||||
|
@@ -720,7 +720,7 @@ static inline int mpc52xx_gpt_wdt_setup(struct mpc52xx_gpt_priv *gpt,
|
|||||||
/* ---------------------------------------------------------------------
|
/* ---------------------------------------------------------------------
|
||||||
* of_platform bus binding code
|
* of_platform bus binding code
|
||||||
*/
|
*/
|
||||||
static int __devinit mpc52xx_gpt_probe(struct of_device *ofdev,
|
static int __devinit mpc52xx_gpt_probe(struct platform_device *ofdev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct mpc52xx_gpt_priv *gpt;
|
struct mpc52xx_gpt_priv *gpt;
|
||||||
@@ -766,7 +766,7 @@ static int __devinit mpc52xx_gpt_probe(struct of_device *ofdev,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mpc52xx_gpt_remove(struct of_device *ofdev)
|
static int mpc52xx_gpt_remove(struct platform_device *ofdev)
|
||||||
{
|
{
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
|
@@ -436,8 +436,8 @@ void mpc52xx_lpbfifo_abort(struct mpc52xx_lpbfifo_request *req)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(mpc52xx_lpbfifo_abort);
|
EXPORT_SYMBOL(mpc52xx_lpbfifo_abort);
|
||||||
|
|
||||||
static int __devinit
|
static int __devinit mpc52xx_lpbfifo_probe(struct platform_device *op,
|
||||||
mpc52xx_lpbfifo_probe(struct of_device *op, const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct resource res;
|
struct resource res;
|
||||||
int rc = -ENOMEM;
|
int rc = -ENOMEM;
|
||||||
@@ -507,7 +507,7 @@ mpc52xx_lpbfifo_probe(struct of_device *op, const struct of_device_id *match)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int __devexit mpc52xx_lpbfifo_remove(struct of_device *op)
|
static int __devexit mpc52xx_lpbfifo_remove(struct platform_device *op)
|
||||||
{
|
{
|
||||||
if (lpbfifo.dev != &op->dev)
|
if (lpbfifo.dev != &op->dev)
|
||||||
return 0;
|
return 0;
|
||||||
|
@@ -111,7 +111,7 @@ static struct mdiobb_ctrl ep8248e_mdio_ctrl = {
|
|||||||
.ops = &ep8248e_mdio_ops,
|
.ops = &ep8248e_mdio_ops,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __devinit ep8248e_mdio_probe(struct of_device *ofdev,
|
static int __devinit ep8248e_mdio_probe(struct platform_device *ofdev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct mii_bus *bus;
|
struct mii_bus *bus;
|
||||||
@@ -154,7 +154,7 @@ err_free_bus:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ep8248e_mdio_remove(struct of_device *ofdev)
|
static int ep8248e_mdio_remove(struct platform_device *ofdev)
|
||||||
{
|
{
|
||||||
BUG();
|
BUG();
|
||||||
return 0;
|
return 0;
|
||||||
|
@@ -99,7 +99,7 @@ struct pmc_type {
|
|||||||
int has_deep_sleep;
|
int has_deep_sleep;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct of_device *pmc_dev;
|
static struct platform_device *pmc_dev;
|
||||||
static int has_deep_sleep, deep_sleeping;
|
static int has_deep_sleep, deep_sleeping;
|
||||||
static int pmc_irq;
|
static int pmc_irq;
|
||||||
static struct mpc83xx_pmc __iomem *pmc_regs;
|
static struct mpc83xx_pmc __iomem *pmc_regs;
|
||||||
@@ -318,7 +318,7 @@ static struct platform_suspend_ops mpc83xx_suspend_ops = {
|
|||||||
.end = mpc83xx_suspend_end,
|
.end = mpc83xx_suspend_end,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int pmc_probe(struct of_device *ofdev,
|
static int pmc_probe(struct platform_device *ofdev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct device_node *np = ofdev->dev.of_node;
|
struct device_node *np = ofdev->dev.of_node;
|
||||||
@@ -396,7 +396,7 @@ out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int pmc_remove(struct of_device *ofdev)
|
static int pmc_remove(struct platform_device *ofdev)
|
||||||
{
|
{
|
||||||
return -EPERM;
|
return -EPERM;
|
||||||
};
|
};
|
||||||
|
@@ -328,7 +328,7 @@ static struct irq_host_ops msic_host_ops = {
|
|||||||
.map = msic_host_map,
|
.map = msic_host_map,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int axon_msi_shutdown(struct of_device *device)
|
static int axon_msi_shutdown(struct platform_device *device)
|
||||||
{
|
{
|
||||||
struct axon_msic *msic = dev_get_drvdata(&device->dev);
|
struct axon_msic *msic = dev_get_drvdata(&device->dev);
|
||||||
u32 tmp;
|
u32 tmp;
|
||||||
@@ -342,7 +342,7 @@ static int axon_msi_shutdown(struct of_device *device)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int axon_msi_probe(struct of_device *device,
|
static int axon_msi_probe(struct platform_device *device,
|
||||||
const struct of_device_id *device_id)
|
const struct of_device_id *device_id)
|
||||||
{
|
{
|
||||||
struct device_node *dn = device->dev.of_node;
|
struct device_node *dn = device->dev.of_node;
|
||||||
|
@@ -216,7 +216,7 @@ static int gpio_mdio_reset(struct mii_bus *bus)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int __devinit gpio_mdio_probe(struct of_device *ofdev,
|
static int __devinit gpio_mdio_probe(struct platform_device *ofdev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct device *dev = &ofdev->dev;
|
struct device *dev = &ofdev->dev;
|
||||||
@@ -275,7 +275,7 @@ out:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int gpio_mdio_remove(struct of_device *dev)
|
static int gpio_mdio_remove(struct platform_device *dev)
|
||||||
{
|
{
|
||||||
struct mii_bus *bus = dev_get_drvdata(&dev->dev);
|
struct mii_bus *bus = dev_get_drvdata(&dev->dev);
|
||||||
|
|
||||||
|
@@ -60,7 +60,7 @@
|
|||||||
static int azfs_major, azfs_minor;
|
static int azfs_major, azfs_minor;
|
||||||
|
|
||||||
struct axon_ram_bank {
|
struct axon_ram_bank {
|
||||||
struct of_device *device;
|
struct platform_device *device;
|
||||||
struct gendisk *disk;
|
struct gendisk *disk;
|
||||||
unsigned int irq_id;
|
unsigned int irq_id;
|
||||||
unsigned long ph_addr;
|
unsigned long ph_addr;
|
||||||
@@ -72,7 +72,7 @@ struct axon_ram_bank {
|
|||||||
static ssize_t
|
static ssize_t
|
||||||
axon_ram_sysfs_ecc(struct device *dev, struct device_attribute *attr, char *buf)
|
axon_ram_sysfs_ecc(struct device *dev, struct device_attribute *attr, char *buf)
|
||||||
{
|
{
|
||||||
struct of_device *device = to_of_device(dev);
|
struct platform_device *device = to_platform_device(dev);
|
||||||
struct axon_ram_bank *bank = device->dev.platform_data;
|
struct axon_ram_bank *bank = device->dev.platform_data;
|
||||||
|
|
||||||
BUG_ON(!bank);
|
BUG_ON(!bank);
|
||||||
@@ -90,7 +90,7 @@ static DEVICE_ATTR(ecc, S_IRUGO, axon_ram_sysfs_ecc, NULL);
|
|||||||
static irqreturn_t
|
static irqreturn_t
|
||||||
axon_ram_irq_handler(int irq, void *dev)
|
axon_ram_irq_handler(int irq, void *dev)
|
||||||
{
|
{
|
||||||
struct of_device *device = dev;
|
struct platform_device *device = dev;
|
||||||
struct axon_ram_bank *bank = device->dev.platform_data;
|
struct axon_ram_bank *bank = device->dev.platform_data;
|
||||||
|
|
||||||
BUG_ON(!bank);
|
BUG_ON(!bank);
|
||||||
@@ -174,8 +174,8 @@ static const struct block_device_operations axon_ram_devops = {
|
|||||||
* axon_ram_probe - probe() method for platform driver
|
* axon_ram_probe - probe() method for platform driver
|
||||||
* @device, @device_id: see of_platform_driver method
|
* @device, @device_id: see of_platform_driver method
|
||||||
*/
|
*/
|
||||||
static int
|
static int axon_ram_probe(struct platform_device *device,
|
||||||
axon_ram_probe(struct of_device *device, const struct of_device_id *device_id)
|
const struct of_device_id *device_id)
|
||||||
{
|
{
|
||||||
static int axon_ram_bank_id = -1;
|
static int axon_ram_bank_id = -1;
|
||||||
struct axon_ram_bank *bank;
|
struct axon_ram_bank *bank;
|
||||||
@@ -304,7 +304,7 @@ failed:
|
|||||||
* @device: see of_platform_driver method
|
* @device: see of_platform_driver method
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
axon_ram_remove(struct of_device *device)
|
axon_ram_remove(struct platform_device *device)
|
||||||
{
|
{
|
||||||
struct axon_ram_bank *bank = device->dev.platform_data;
|
struct axon_ram_bank *bank = device->dev.platform_data;
|
||||||
|
|
||||||
|
@@ -365,8 +365,8 @@ bcom_engine_cleanup(void)
|
|||||||
/* OF platform driver */
|
/* OF platform driver */
|
||||||
/* ======================================================================== */
|
/* ======================================================================== */
|
||||||
|
|
||||||
static int __devinit
|
static int __devinit mpc52xx_bcom_probe(struct platform_device *op,
|
||||||
mpc52xx_bcom_probe(struct of_device *op, const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct device_node *ofn_sram;
|
struct device_node *ofn_sram;
|
||||||
struct resource res_bcom;
|
struct resource res_bcom;
|
||||||
@@ -461,8 +461,7 @@ error_ofput:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int mpc52xx_bcom_remove(struct platform_device *op)
|
||||||
mpc52xx_bcom_remove(struct of_device *op)
|
|
||||||
{
|
{
|
||||||
/* Clean up the engine */
|
/* Clean up the engine */
|
||||||
bcom_engine_cleanup();
|
bcom_engine_cleanup();
|
||||||
|
@@ -250,7 +250,7 @@ unlock:
|
|||||||
raw_spin_unlock(&desc->lock);
|
raw_spin_unlock(&desc->lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fsl_of_msi_remove(struct of_device *ofdev)
|
static int fsl_of_msi_remove(struct platform_device *ofdev)
|
||||||
{
|
{
|
||||||
struct fsl_msi *msi = ofdev->dev.platform_data;
|
struct fsl_msi *msi = ofdev->dev.platform_data;
|
||||||
int virq, i;
|
int virq, i;
|
||||||
@@ -274,7 +274,7 @@ static int fsl_of_msi_remove(struct of_device *ofdev)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devinit fsl_of_msi_probe(struct of_device *dev,
|
static int __devinit fsl_of_msi_probe(struct platform_device *dev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct fsl_msi *msi;
|
struct fsl_msi *msi;
|
||||||
|
@@ -58,7 +58,8 @@ static struct platform_suspend_ops pmc_suspend_ops = {
|
|||||||
.enter = pmc_suspend_enter,
|
.enter = pmc_suspend_enter,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int pmc_probe(struct of_device *ofdev, const struct of_device_id *id)
|
static int pmc_probe(struct platform_device *ofdev,
|
||||||
|
const struct of_device_id *id)
|
||||||
{
|
{
|
||||||
pmc_regs = of_iomap(ofdev->dev.of_node, 0);
|
pmc_regs = of_iomap(ofdev->dev.of_node, 0);
|
||||||
if (!pmc_regs)
|
if (!pmc_regs)
|
||||||
|
@@ -1338,7 +1338,7 @@ static inline void fsl_rio_info(struct device *dev, u32 ccsr)
|
|||||||
* master port with system-specific info, and registers the
|
* master port with system-specific info, and registers the
|
||||||
* master port with the RapidIO subsystem.
|
* master port with the RapidIO subsystem.
|
||||||
*/
|
*/
|
||||||
int fsl_rio_setup(struct of_device *dev)
|
int fsl_rio_setup(struct platform_device *dev)
|
||||||
{
|
{
|
||||||
struct rio_ops *ops;
|
struct rio_ops *ops;
|
||||||
struct rio_mport *port;
|
struct rio_mport *port;
|
||||||
@@ -1536,7 +1536,7 @@ err_ops:
|
|||||||
|
|
||||||
/* The probe function for RapidIO peer-to-peer network.
|
/* The probe function for RapidIO peer-to-peer network.
|
||||||
*/
|
*/
|
||||||
static int __devinit fsl_of_rio_rpn_probe(struct of_device *dev,
|
static int __devinit fsl_of_rio_rpn_probe(struct platform_device *dev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
|
@@ -43,7 +43,7 @@ struct pmi_data {
|
|||||||
struct mutex msg_mutex;
|
struct mutex msg_mutex;
|
||||||
pmi_message_t msg;
|
pmi_message_t msg;
|
||||||
struct completion *completion;
|
struct completion *completion;
|
||||||
struct of_device *dev;
|
struct platform_device *dev;
|
||||||
int irq;
|
int irq;
|
||||||
u8 __iomem *pmi_reg;
|
u8 __iomem *pmi_reg;
|
||||||
struct work_struct work;
|
struct work_struct work;
|
||||||
@@ -121,7 +121,7 @@ static void pmi_notify_handlers(struct work_struct *work)
|
|||||||
spin_unlock(&data->handler_spinlock);
|
spin_unlock(&data->handler_spinlock);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int pmi_of_probe(struct of_device *dev,
|
static int pmi_of_probe(struct platform_device *dev,
|
||||||
const struct of_device_id *match)
|
const struct of_device_id *match)
|
||||||
{
|
{
|
||||||
struct device_node *np = dev->dev.of_node;
|
struct device_node *np = dev->dev.of_node;
|
||||||
@@ -185,7 +185,7 @@ out:
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int pmi_of_remove(struct of_device *dev)
|
static int pmi_of_remove(struct platform_device *dev)
|
||||||
{
|
{
|
||||||
struct pmi_handler *handler, *tmp;
|
struct pmi_handler *handler, *tmp;
|
||||||
|
|
||||||
|
@@ -651,14 +651,15 @@ unsigned int qe_get_num_of_snums(void)
|
|||||||
EXPORT_SYMBOL(qe_get_num_of_snums);
|
EXPORT_SYMBOL(qe_get_num_of_snums);
|
||||||
|
|
||||||
#if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC_85xx)
|
#if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC_85xx)
|
||||||
static int qe_resume(struct of_device *ofdev)
|
static int qe_resume(struct platform_device *ofdev)
|
||||||
{
|
{
|
||||||
if (!qe_alive_during_sleep())
|
if (!qe_alive_during_sleep())
|
||||||
qe_reset();
|
qe_reset();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int qe_probe(struct of_device *ofdev, const struct of_device_id *id)
|
static int qe_probe(struct platform_device *ofdev,
|
||||||
|
const struct of_device_id *id)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user