From patchwork Mon Apr 6 09:29:58 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Beregalov X-Patchwork-Id: 16490 X-Patchwork-Delegate: kyle@mcmartin.ca Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n369U4Q5017800 for ; Mon, 6 Apr 2009 09:30:04 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754733AbZDFJaE (ORCPT ); Mon, 6 Apr 2009 05:30:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754735AbZDFJaE (ORCPT ); Mon, 6 Apr 2009 05:30:04 -0400 Received: from mail-ew0-f165.google.com ([209.85.219.165]:60388 "EHLO mail-ew0-f165.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754733AbZDFJaB (ORCPT ); Mon, 6 Apr 2009 05:30:01 -0400 Received: by ewy9 with SMTP id 9so1811996ewy.37 for ; Mon, 06 Apr 2009 02:29:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=w+BUmmelkGCjjVGInYPl7r3jrieeH7Xv1DJY8oHDuJc=; b=YKQSS5KGpMNyRBNQ9RT141rmKqB2e4eqLSnLC7if6rdNXWxkpA9VAv9gIs1OO06f6g iOmty9hEHJO1eT6Aa42fLPgtEJDhT9UfeX2/rmYd/n8eafG9xsGOC5xXYUs7jp2OI3R+ a5T+FMXjz6Jb4DO2+B/h66Yency8y0h3dbEgQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=u64NAoLjIas2eXhMZH4boFIXDHNRMjTj9W86OAiRLYs0LeVoDo0mE0Nw1nBhw8znLu ON2JypNp7wBCo+enmVVso+cqPhoba62go+AMLj34WIVWMGChr7jvWEnpAmeQCdIqslYE viY6LKjTRrW4RztVnzKDSiT1U18Kns6xeZM2w= MIME-Version: 1.0 Received: by 10.210.142.10 with SMTP id p10mr2755941ebd.85.1239010198454; Mon, 06 Apr 2009 02:29:58 -0700 (PDT) Date: Mon, 6 Apr 2009 13:29:58 +0400 Message-ID: Subject: [PATCH] parisc: decode_exc.c should include kernel.h From: Alexander Beregalov To: Kyle McMartin , linux-parisc@vger.kernel.org Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org Fix this build error: arch/parisc/math-emu/decode_exc.c:351: undefined reference to `printk' Signed-off-by: Alexander Beregalov --- arch/parisc/math-emu/decode_exc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/parisc/math-emu/decode_exc.c b/arch/parisc/math-emu/decode_exc.c index 66c8a9f..3ca1c61 100644 --- a/arch/parisc/math-emu/decode_exc.c +++ b/arch/parisc/math-emu/decode_exc.c @@ -40,7 +40,7 @@ * END_DESC */ - +#include #include "float.h" #include "sgl_float.h" #include "dbl_float.h"