From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751769Ab3CAUg5 (ORCPT ); Fri, 1 Mar 2013 15:36:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:30460 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751269Ab3CAUg4 (ORCPT ); Fri, 1 Mar 2013 15:36:56 -0500 Message-ID: <1362170214.21294.0.camel@f16> Subject: [PATCH] Clean-up: Fix incorrect path to header file From: Jonathan Brassow To: linux-kernel@vger.kernel.org Date: Fri, 01 Mar 2013 14:36:54 -0600 Organization: Red Hat, Inc Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Clean-up: Fix incorrect path to header file Commit af170c5 (originally introduced in v3.8-rc1) moved some header files around and forgot to adjust the path to one of those. Thus the header cannot be found, the macros are not defined and the kernel will not compile. Signed-off-by: Jonathan Brassow Index: linux-upstream/arch/x86/include/uapi/asm/msr.h =================================================================== --- linux-upstream.orig/arch/x86/include/uapi/asm/msr.h +++ linux-upstream/arch/x86/include/uapi/asm/msr.h @@ -1,7 +1,7 @@ #ifndef _UAPI_ASM_X86_MSR_H #define _UAPI_ASM_X86_MSR_H -#include +#include #ifndef __ASSEMBLY__