From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934637AbcALQ2t (ORCPT ); Tue, 12 Jan 2016 11:28:49 -0500 Received: from mga04.intel.com ([192.55.52.120]:10391 "EHLO mga04.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934524AbcALQ2q (ORCPT ); Tue, 12 Jan 2016 11:28:46 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,558,1444719600"; d="scan'208";a="28057455" From: Keith Busch To: LKML , x86@kernel.org, linux-pci@vger.kernel.org, Thomas Gleixner , Bjorn Helgaas Cc: Dan Williams , Bryan Veal , Jon Derrick , Keith Busch Subject: [PATCHv8] Driver for new "VMD" device Date: Tue, 12 Jan 2016 09:28:38 -0700 Message-Id: <1452616119-11450-1-git-send-email-keith.busch@intel.com> X-Mailer: git-send-email 1.7.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This is just the commit for the VMD driver. The other patches are the same from previous series here: https://lkml.org/lkml/2015/12/21/353 Patch 2/6 is no longer applicable since someone already beat me to exporting those functions to API in commit a4289dc2ec3a5. Otherwise the others are still needed and cleanly apply. I wasn't sure if I should repost the entire series or just the one file that changed. Changes since v7 are all checkpatch fixes: Fixing 80 character lines. Spacing, tabbing and new line fixes. A macro semicolon fix. An entry in the MAINTAINERS file. The only checkpatch issue reported is warning on a normally "const" struct, but the warning is not applicable for the usage. Keith Busch (1): x86/PCI: Initial commit for new VMD device driver MAINTAINERS | 6 + arch/x86/Kconfig | 13 + arch/x86/include/asm/hw_irq.h | 5 + arch/x86/pci/Makefile | 2 + arch/x86/pci/vmd.c | 699 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 725 insertions(+) create mode 100644 arch/x86/pci/vmd.c -- 2.6.2.307.g37023ba