From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754850Ab2KMPoQ (ORCPT ); Tue, 13 Nov 2012 10:44:16 -0500 Received: from arroyo.ext.ti.com ([192.94.94.40]:49396 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754730Ab2KMPoO (ORCPT ); Tue, 13 Nov 2012 10:44:14 -0500 From: Eduardo Valentin To: CC: , , , , Eduardo Valentin Subject: [PATCH 1/5] staging: omap-thermal: fix compilation Date: Tue, 13 Nov 2012 11:43:18 -0400 Message-ID: <1352821402-13458-2-git-send-email-eduardo.valentin@ti.com> X-Mailer: git-send-email 1.7.7.1.488.ge8e1c In-Reply-To: <1352821402-13458-1-git-send-email-eduardo.valentin@ti.com> References: <1352821402-13458-1-git-send-email-eduardo.valentin@ti.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Because we are not including asm/io.h, the driver is not compiling. This patch adds the missing header. Signed-off-by: Eduardo Valentin --- drivers/staging/omap-thermal/omap-bandgap.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/staging/omap-thermal/omap-bandgap.c b/drivers/staging/omap-thermal/omap-bandgap.c index 368a2e1..1cae5ed 100644 --- a/drivers/staging/omap-thermal/omap-bandgap.c +++ b/drivers/staging/omap-thermal/omap-bandgap.c @@ -38,6 +38,7 @@ #include #include #include +#include #include "omap-bandgap.h" -- 1.7.7.1.488.ge8e1c