From patchwork Thu Feb 7 06:55:54 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 14656 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id A5C5623EAD for ; Thu, 7 Feb 2013 07:05:27 +0000 (UTC) Received: from mail-vc0-f169.google.com (mail-vc0-f169.google.com [209.85.220.169]) by fiordland.canonical.com (Postfix) with ESMTP id 5B7B5A18B4D for ; Thu, 7 Feb 2013 07:05:27 +0000 (UTC) Received: by mail-vc0-f169.google.com with SMTP id n10so1430564vcn.14 for ; Wed, 06 Feb 2013 23:05:26 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=DcSkRpQhjKSQfEczORTU7+3q+viZPLUjRlEBO7HVpKc=; b=WhjN6LySmlHQH7xqFUfIEzh4LfA14bS6JA09ywTXAYKzHlj+BuKPJ3LxmDVYN8zSyS vfYxDhPrvBg5pp6u+b4nCdShzIeZJ6DGC/s01EXxxkPFAY6tg1m8o7JzEPHgSncxF6vc +fc4GjWbsQZx71cvMx8FIq4bjqa/lNgsXgP6GNBWUgLF7pKcVornrRXecvwTC0R+GXzR GvNXaCvdF4fnvGnczrcfeLCcU7mLmbmecCwxM1MNBEmlMQqwJ04rXsPBPxIDHNA0zArr lAyi64k4xm+atq37QLpwrnrnaMFPwjwk+rIYwBl0qMAgO291kCDbp0a+24uFAnOBPRMb Dhug== X-Received: by 10.220.219.77 with SMTP id ht13mr224964vcb.66.1360220726738; Wed, 06 Feb 2013 23:05:26 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.58.252.8 with SMTP id zo8csp73774vec; Wed, 6 Feb 2013 23:05:26 -0800 (PST) X-Received: by 10.42.95.147 with SMTP id f19mr491187icn.24.1360220721427; Wed, 06 Feb 2013 23:05:21 -0800 (PST) Received: from mail-da0-f43.google.com (mail-da0-f43.google.com [209.85.210.43]) by mx.google.com with ESMTPS id j9si33220851pav.213.2013.02.06.23.05.21 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 06 Feb 2013 23:05:21 -0800 (PST) Received-SPF: neutral (google.com: 209.85.210.43 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.210.43; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.43 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-da0-f43.google.com with SMTP id u36so1062403dak.30 for ; Wed, 06 Feb 2013 23:05:20 -0800 (PST) X-Received: by 10.66.86.71 with SMTP id n7mr2630800paz.77.1360220720831; Wed, 06 Feb 2013 23:05:20 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id t6sm43655618paz.11.2013.02.06.23.05.17 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 06 Feb 2013 23:05:20 -0800 (PST) From: Sachin Kamat To: linux-media@vger.kernel.org Cc: t.stanislaws@samsung.com, s.nawrocki@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/2] [media] s5p-tv: Include missing irqreturn.h header Date: Thu, 7 Feb 2013 12:25:54 +0530 Message-Id: <1360220155-28819-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQmvoTcPvQrDmdAl2V0ytizfHh/uZu6CtDL3GoIYHc/nVz+g23ge7c0HEjWeHEIwL96GNv3Z Without this patch we get the following compilation errors: drivers/media/platform/s5p-tv/mixer.h:345:13: error: Expected ; at end of declaration drivers/media/platform/s5p-tv/mixer.h:345:13: error: got mxr_irq_handler Signed-off-by: Sachin Kamat --- drivers/media/platform/s5p-tv/mixer.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/platform/s5p-tv/mixer.h b/drivers/media/platform/s5p-tv/mixer.h index b671e20..04e6490 100644 --- a/drivers/media/platform/s5p-tv/mixer.h +++ b/drivers/media/platform/s5p-tv/mixer.h @@ -19,6 +19,7 @@ #endif #include +#include #include #include #include