[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230801105846.3708252-1-arnd@kernel.org>
Date: Tue, 1 Aug 2023 12:58:15 +0200
From: Arnd Bergmann <arnd@...nel.org>
To: Andi Shyti <andi.shyti@...nel.org>
Cc: Arnd Bergmann <arnd@...db.de>,
"Michael S. Tsirkin" <mst@...hat.com>,
Jason Wang <jasowang@...hat.com>,
Xuan Zhuo <xuanzhuo@...ux.alibaba.com>,
Stefano Garzarella <sgarzare@...hat.com>,
Christophe JAILLET <christophe.jaillet@...adoo.fr>,
Feng Liu <feliu@...dia.com>,
Viresh Kumar <viresh.kumar@...aro.org>,
Paul Cercueil <paul@...pouillou.net>,
Jonathan Cameron <Jonathan.Cameron@...wei.com>,
virtualization@...ts.linux-foundation.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] virtio: Remove PM #ifdef guards to fix i2c driver
From: Arnd Bergmann <arnd@...db.de>
A cleanup in the virtio i2c caused a build failure:
drivers/i2c/busses/i2c-virtio.c:270:10: error: 'struct virtio_driver' has no member named 'freeze'
drivers/i2c/busses/i2c-virtio.c:271:10: error: 'struct virtio_driver' has no member named 'restore'
Change the structure definition to allow this cleanup to
be applied everywhere.
Fixes: 73d546c76235b ("i2c: virtio: Remove #ifdef guards for PM related functions")
Signed-off-by: Arnd Bergmann <arnd@...db.de>
---
include/linux/virtio.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/include/linux/virtio.h b/include/linux/virtio.h
index 0f3b9017dff40..9b94e2c9bbb81 100644
--- a/include/linux/virtio.h
+++ b/include/linux/virtio.h
@@ -218,10 +218,8 @@ struct virtio_driver {
void (*scan)(struct virtio_device *dev);
void (*remove)(struct virtio_device *dev);
void (*config_changed)(struct virtio_device *dev);
-#ifdef CONFIG_PM
int (*freeze)(struct virtio_device *dev);
int (*restore)(struct virtio_device *dev);
-#endif
};
static inline struct virtio_driver *drv_to_virtio(struct device_driver *drv)
--
2.39.2
Powered by blists - more mailing lists