Commit 88e2ce01 authored by Geliang Tang's avatar Geliang Tang Committed by Samuel Ortiz

NFC: trf7970a: use to_spi_device

Use to_spi_device() instead of open-coding it.
Signed-off-by: default avatarGeliang Tang <geliangtang@163.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 6b52d994
...@@ -2139,7 +2139,7 @@ static int trf7970a_remove(struct spi_device *spi) ...@@ -2139,7 +2139,7 @@ static int trf7970a_remove(struct spi_device *spi)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int trf7970a_suspend(struct device *dev) static int trf7970a_suspend(struct device *dev)
{ {
struct spi_device *spi = container_of(dev, struct spi_device, dev); struct spi_device *spi = to_spi_device(dev);
struct trf7970a *trf = spi_get_drvdata(spi); struct trf7970a *trf = spi_get_drvdata(spi);
dev_dbg(dev, "Suspend\n"); dev_dbg(dev, "Suspend\n");
...@@ -2155,7 +2155,7 @@ static int trf7970a_suspend(struct device *dev) ...@@ -2155,7 +2155,7 @@ static int trf7970a_suspend(struct device *dev)
static int trf7970a_resume(struct device *dev) static int trf7970a_resume(struct device *dev)
{ {
struct spi_device *spi = container_of(dev, struct spi_device, dev); struct spi_device *spi = to_spi_device(dev);
struct trf7970a *trf = spi_get_drvdata(spi); struct trf7970a *trf = spi_get_drvdata(spi);
int ret; int ret;
...@@ -2174,7 +2174,7 @@ static int trf7970a_resume(struct device *dev) ...@@ -2174,7 +2174,7 @@ static int trf7970a_resume(struct device *dev)
#ifdef CONFIG_PM #ifdef CONFIG_PM
static int trf7970a_pm_runtime_suspend(struct device *dev) static int trf7970a_pm_runtime_suspend(struct device *dev)
{ {
struct spi_device *spi = container_of(dev, struct spi_device, dev); struct spi_device *spi = to_spi_device(dev);
struct trf7970a *trf = spi_get_drvdata(spi); struct trf7970a *trf = spi_get_drvdata(spi);
int ret; int ret;
...@@ -2191,7 +2191,7 @@ static int trf7970a_pm_runtime_suspend(struct device *dev) ...@@ -2191,7 +2191,7 @@ static int trf7970a_pm_runtime_suspend(struct device *dev)
static int trf7970a_pm_runtime_resume(struct device *dev) static int trf7970a_pm_runtime_resume(struct device *dev)
{ {
struct spi_device *spi = container_of(dev, struct spi_device, dev); struct spi_device *spi = to_spi_device(dev);
struct trf7970a *trf = spi_get_drvdata(spi); struct trf7970a *trf = spi_get_drvdata(spi);
int ret; int ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment