From patchwork Wed Dec 21 23:27:20 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Williamson X-Patchwork-Id: 9483945 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 3214F601D4 for ; Wed, 21 Dec 2016 23:35:41 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 24687281C3 for ; Wed, 21 Dec 2016 23:35:41 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 192BF2849D; Wed, 21 Dec 2016 23:35:41 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3D0BE2848C for ; Wed, 21 Dec 2016 23:35:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933512AbcLUXfG (ORCPT ); Wed, 21 Dec 2016 18:35:06 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56458 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752830AbcLUXfD (ORCPT ); Wed, 21 Dec 2016 18:35:03 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 75A4D8E3E2; Wed, 21 Dec 2016 23:27:21 +0000 (UTC) Received: from gimli.home (ovpn-116-226.phx2.redhat.com [10.3.116.226]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id uBLNRLvc015802; Wed, 21 Dec 2016 18:27:21 -0500 Subject: [PATCH 1/4] vfio-mdev: Remove an unused structure element From: Alex Williamson To: alex.williamson@redhat.com Cc: Kirti Wankhede , linux-kernel@vger.kernel.org, kvm@vger.kernel.org Date: Wed, 21 Dec 2016 16:27:20 -0700 Message-ID: <20161221232720.6091.60209.stgit@gimli.home> In-Reply-To: <20161221232315.6091.30612.stgit@gimli.home> References: <20161221232315.6091.30612.stgit@gimli.home> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Wed, 21 Dec 2016 23:27:21 +0000 (UTC) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Alex Williamson Cc: Kirti Wankhede Signed-off-by: Alex Williamson --- include/linux/mdev.h | 1 - 1 file changed, 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/include/linux/mdev.h b/include/linux/mdev.h index ec819e9..c3dbf0e 100644 --- a/include/linux/mdev.h +++ b/include/linux/mdev.h @@ -35,7 +35,6 @@ struct mdev_device { /* internal */ struct kref ref; - struct list_head next; struct kobject *type_kobj; };