lkml.org 
[lkml]   [2023]   [Sep]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Date
    Subject[PATCH v4 28/42] ata: pata_ep93xx: add device tree support
    From: Nikita Shubin <nikita.shubin@maquefel.me>

    Add OF ID match table.

    Signed-off-by: Nikita Shubin <nikita.shubin@maquefel.me>
    ---
    drivers/ata/pata_ep93xx.c | 8 ++++++++
    1 file changed, 8 insertions(+)

    diff --git a/drivers/ata/pata_ep93xx.c b/drivers/ata/pata_ep93xx.c
    index 3f91b6cff353..47686dc1fed6 100644
    --- a/drivers/ata/pata_ep93xx.c
    +++ b/drivers/ata/pata_ep93xx.c
    @@ -44,6 +44,7 @@
    #include <linux/delay.h>
    #include <linux/dmaengine.h>
    #include <linux/ktime.h>
    +#include <linux/mod_devicetable.h>

    #include <linux/platform_data/dma-ep93xx.h>
    #include <linux/soc/cirrus/ep93xx.h>
    @@ -1022,9 +1023,16 @@ static int ep93xx_pata_remove(struct platform_device *pdev)
    return 0;
    }

    +static const struct of_device_id ep93xx_pata_of_ids[] = {
    + { .compatible = "cirrus,ep9312-pata" },
    + { /* sentinel */ }
    +};
    +MODULE_DEVICE_TABLE(of, ep93xx_pata_of_ids);
    +
    static struct platform_driver ep93xx_pata_platform_driver = {
    .driver = {
    .name = DRV_NAME,
    + .of_match_table = ep93xx_pata_of_ids,
    },
    .probe = ep93xx_pata_probe,
    .remove = ep93xx_pata_remove,
    --
    2.39.2

    \
     
     \ /
      Last update: 2023-09-15 10:14    [W:3.423 / U:0.900 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site