[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1] x86/hvm/ioreq: remove empty line after function declaration
- To: xen-devel@xxxxxxxxxxxxxxxxxxxx
- From: Olaf Hering <olaf@xxxxxxxxx>
- Date: Thu, 25 May 2023 17:25:27 +0200
- Arc-authentication-results: i=1; strato.com; arc=none; dkim=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; t=1685028339; s=strato-dkim-0002; d=strato.com; h=Message-Id:Date:Subject:Cc:To:From:Cc:Date:From:Subject:Sender; bh=6nkcLF5uy3qZOAbDqmnHxK6TWE4JxR4ZFTQLpYrVHLQ=; b=dWGz7y+8trXENdoxg8d1slysEgSXH5u23ZnEEcGZsjFl4pQMN7QJeTPFP9E5kTTxQn Hx5tt+gNReH+DWE+02pHmnQJOcMXxAob7seEGLE/abd4IRDjOWCR+QjWM58agHOw6MFA ZzUnXC/N5fnsU47L8ay8uWDbPRwxR+5eYkHFAGd2u9irakvLPZ2OUB8Fy6XHXYryusZp m5Myuje1c8tr7CASwE0tOzDmDMgryTV0DSe8vVhZIZjQ/b4eCy2Fpysy+fF4qdHs/5Ub 7oVQjR/Y9qTUTXnnyWlHznubXOemYYiRc4bSqtywC7Mwepkp/pXoVbkJJkit4jRNj+TX egGQ==
- Arc-seal: i=1; a=rsa-sha256; t=1685028339; cv=none; d=strato.com; s=strato-dkim-0002; b=quzZBMTmydlZ4adhVV6lCqYcLo9rn550c/nfskkxSU6vtao+zyVPA44GHHZRTFN1QZ Rw9wEi1qTiFVNKlhAudkE09Ng7RJYzY5BUwEfGDPvD52o/9gzxQyDoXJTNnFswsbSXBu wq8mW1BglPkWNSgO7LxRksP66eJwsytbWiGVoo1mTbM2DOvtedY3Ggq4pq2VSoFc5V7W ifpIZld6n01OvCYD+QMixP+gXeIg2zgQxlE/pqsfsiKwe9WXzgZ9a3AmPywcj4ZD8Qpa 4fijOxcpYnT36OOKDsGNlKoCcd5zTau4SM84ReuijslaRsvUpHHtMnG0qMdZAd4sfCBr CoFg==
- Cc: Paul Durrant <paul@xxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>
- Delivery-date: Thu, 25 May 2023 15:25:52 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
Introduced in commit 6ddfaabceeec3c31bc97a7208c46f581de55f71d
("x86/hvm/ioreq: simplify code and use consistent naming").
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
---
xen/arch/x86/hvm/ioreq.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/xen/arch/x86/hvm/ioreq.c b/xen/arch/x86/hvm/ioreq.c
index 20dbb4c8cf..4eb7a70182 100644
--- a/xen/arch/x86/hvm/ioreq.c
+++ b/xen/arch/x86/hvm/ioreq.c
@@ -169,7 +169,6 @@ static int hvm_map_ioreq_gfn(struct ioreq_server *s, bool
buf)
}
static void hvm_remove_ioreq_gfn(struct ioreq_server *s, bool buf)
-
{
struct domain *d = s->target;
struct ioreq_page *iorp = buf ? &s->bufioreq : &s->ioreq;
|