soundwire: intel: Use auxiliary_device driver data helpers
authorDavid E. Box <david.e.box@linux.intel.com>
Tue, 21 Dec 2021 23:58:50 +0000 (15:58 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 22 Dec 2021 12:59:01 +0000 (13:59 +0100)
Use auxiliary_get_drvdata and auxiliary_set_drvdata helpers.

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com>
Signed-off-by: David E. Box <david.e.box@linux.intel.com>
Link: https://lore.kernel.org/r/20211221235852.323752-3-david.e.box@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/soundwire/intel.c
drivers/soundwire/intel_init.c

index 78037ffdb09ba939f59ca5d8bd0c454942fd6f33..d082d18e41a9fab69fd577ab8d4f2c97be7e497f 100644 (file)
@@ -1293,7 +1293,7 @@ static int intel_link_probe(struct auxiliary_device *auxdev,
        bus->ops = &sdw_intel_ops;
 
        /* set driver data, accessed by snd_soc_dai_get_drvdata() */
-       dev_set_drvdata(dev, cdns);
+       auxiliary_set_drvdata(auxdev, cdns);
 
        /* use generic bandwidth allocation algorithm */
        sdw->cdns.bus.compute_params = sdw_compute_params;
@@ -1321,7 +1321,7 @@ int intel_link_startup(struct auxiliary_device *auxdev)
 {
        struct sdw_cdns_stream_config config;
        struct device *dev = &auxdev->dev;
-       struct sdw_cdns *cdns = dev_get_drvdata(dev);
+       struct sdw_cdns *cdns = auxiliary_get_drvdata(auxdev);
        struct sdw_intel *sdw = cdns_to_intel(cdns);
        struct sdw_bus *bus = &cdns->bus;
        int link_flags;
@@ -1463,7 +1463,7 @@ err_init:
 static void intel_link_remove(struct auxiliary_device *auxdev)
 {
        struct device *dev = &auxdev->dev;
-       struct sdw_cdns *cdns = dev_get_drvdata(dev);
+       struct sdw_cdns *cdns = auxiliary_get_drvdata(auxdev);
        struct sdw_intel *sdw = cdns_to_intel(cdns);
        struct sdw_bus *bus = &cdns->bus;
 
@@ -1488,7 +1488,7 @@ int intel_link_process_wakeen_event(struct auxiliary_device *auxdev)
        void __iomem *shim;
        u16 wake_sts;
 
-       sdw = dev_get_drvdata(dev);
+       sdw = auxiliary_get_drvdata(auxdev);
        bus = &sdw->cdns.bus;
 
        if (bus->prop.hw_disabled || !sdw->startup_done) {
index e329022e1669af5dfb0a8c5c19550955f9efdc43..d99807765dfe45ba96649f8947472e66ab1856cb 100644 (file)
@@ -244,7 +244,7 @@ static struct sdw_intel_ctx
                        goto err;
 
                link = &ldev->link_res;
-               link->cdns = dev_get_drvdata(&ldev->auxdev.dev);
+               link->cdns = auxiliary_get_drvdata(&ldev->auxdev);
 
                if (!link->cdns) {
                        dev_err(&adev->dev, "failed to get link->cdns\n");