From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755093Ab2DRUx3 (ORCPT ); Wed, 18 Apr 2012 16:53:29 -0400 Received: from mail.windriver.com ([147.11.1.11]:35898 "EHLO mail.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753047Ab2DRUx2 (ORCPT ); Wed, 18 Apr 2012 16:53:28 -0400 From: Paul Gortmaker To: linux-kernel@vger.kernel.org Cc: Paul Gortmaker , Chris Zankel Subject: [PATCH] xtensa: fix build error in xtensa/include/asm/io.h Date: Wed, 18 Apr 2012 16:53:11 -0400 Message-Id: <1334782391-468-1-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 1.7.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Caused by commit 6c03438edeb5c359af35f060ea016ca65671c269 kernel.h: doesn't explicitly use bug.h, so don't include it. This header uses bug.h so explicitly include it now that the implicit presence was removed by 6c03438ed. Cc: Chris Zankel Signed-off-by: Paul Gortmaker diff --git a/arch/xtensa/include/asm/io.h b/arch/xtensa/include/asm/io.h index d04cd3a..4beb43c 100644 --- a/arch/xtensa/include/asm/io.h +++ b/arch/xtensa/include/asm/io.h @@ -14,6 +14,7 @@ #ifdef __KERNEL__ #include #include +#include #include #include -- 1.7.9.1