All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vdpa: vdpa_sim: vdpa_sim_net: fixed cofing style issues
@ 2024-11-07 19:19 Gediminas Repecka
  2024-11-12 23:07 ` Michael S. Tsirkin
  0 siblings, 1 reply; 2+ messages in thread
From: Gediminas Repecka @ 2024-11-07 19:19 UTC (permalink / raw)
  To: mst; +Cc: jasowang, virtualization, linux-kernel, Gediminas Repecka

Fixed coding style issues reported by checkpatch script
---
 drivers/vdpa/vdpa_sim/vdpa_sim_net.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
index 6caf09a1907b..0705aff74cf3 100644
--- a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
+++ b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
@@ -53,7 +53,7 @@ struct vdpasim_cq_stats {
 	u64 errors;
 };

-struct vdpasim_net{
+struct vdpasim_net {
 	struct vdpasim vdpasim;
 	struct vdpasim_dataq_stats tx_stats;
 	struct vdpasim_dataq_stats rx_stats;
@@ -293,7 +293,7 @@ static int vdpasim_net_get_stats(struct vdpasim *vdpasim, u16 idx,
 	unsigned int start;
 	int err = -EMSGSIZE;

-	switch(idx) {
+	switch (idx) {
 	case 0:
 		do {
 			start = u64_stats_fetch_begin(&net->rx_stats.syncp);
@@ -543,7 +543,7 @@ static struct vdpa_mgmt_dev mgmt_dev = {
 	.ops = &vdpasim_net_mgmtdev_ops,
 	.config_attr_mask = (1 << VDPA_ATTR_DEV_NET_CFG_MACADDR |
 			     1 << VDPA_ATTR_DEV_NET_CFG_MTU |
-		             1 << VDPA_ATTR_DEV_FEATURES),
+			     1 << VDPA_ATTR_DEV_FEATURES),
 	.max_supported_vqs = VDPASIM_NET_VQ_NUM,
 	.supported_features = VDPASIM_NET_FEATURES,
 };

2.34.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-11-12 23:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-07 19:19 [PATCH] vdpa: vdpa_sim: vdpa_sim_net: fixed cofing style issues Gediminas Repecka
2024-11-12 23:07 ` Michael S. Tsirkin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.