mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 23:52:08 +02:00
mailbox: zynqmp: Move of_match structure closer to usage
The of_match structure zynqmp_ipi_of_match is now adjacent to where it used in the zynqmp_ipi_driver structure for readability. Signed-off-by: Ben Levinsky <ben.levinsky@amd.com> Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
This commit is contained in:
parent
e67572cd22
commit
6efb495826
|
|
@ -415,12 +415,6 @@ static struct mbox_chan *zynqmp_ipi_of_xlate(struct mbox_controller *mbox,
|
|||
return chan;
|
||||
}
|
||||
|
||||
static const struct of_device_id zynqmp_ipi_of_match[] = {
|
||||
{ .compatible = "xlnx,zynqmp-ipi-mailbox" },
|
||||
{},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, zynqmp_ipi_of_match);
|
||||
|
||||
/**
|
||||
* zynqmp_ipi_mbox_get_buf_res - Get buffer resource from the IPI dev node
|
||||
*
|
||||
|
|
@ -695,6 +689,12 @@ static void zynqmp_ipi_remove(struct platform_device *pdev)
|
|||
zynqmp_ipi_free_mboxes(pdata);
|
||||
}
|
||||
|
||||
static const struct of_device_id zynqmp_ipi_of_match[] = {
|
||||
{ .compatible = "xlnx,zynqmp-ipi-mailbox" },
|
||||
{},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, zynqmp_ipi_of_match);
|
||||
|
||||
static struct platform_driver zynqmp_ipi_driver = {
|
||||
.probe = zynqmp_ipi_probe,
|
||||
.remove_new = zynqmp_ipi_remove,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user