From patchwork Fri Sep 28 23:20:07 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Santos X-Patchwork-Id: 1527611 Return-Path: X-Original-To: patchwork-linux-sparse@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id D7EEE3FDAE for ; Fri, 28 Sep 2012 23:27:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758807Ab2I1X1k (ORCPT ); Fri, 28 Sep 2012 19:27:40 -0400 Received: from nm39-vm4.bullet.mail.bf1.yahoo.com ([72.30.239.148]:26619 "HELO nm39-vm4.bullet.mail.bf1.yahoo.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1758776Ab2I1X1k (ORCPT ); Fri, 28 Sep 2012 19:27:40 -0400 X-Greylist: delayed 397 seconds by postgrey-1.27 at vger.kernel.org; Fri, 28 Sep 2012 19:27:39 EDT Received: from [98.139.212.146] by nm39.bullet.mail.bf1.yahoo.com with NNFMP; 28 Sep 2012 23:21:00 -0000 Received: from [66.94.237.115] by tm3.bullet.mail.bf1.yahoo.com with NNFMP; 28 Sep 2012 23:21:00 -0000 Received: from [127.0.0.1] by omp1020.access.mail.mud.yahoo.com with NNFMP; 28 Sep 2012 23:21:00 -0000 X-Yahoo-Newman-Id: 878260.39372.bm@omp1020.access.mail.mud.yahoo.com Received: (qmail 81056 invoked from network); 28 Sep 2012 23:21:00 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=att.net; s=s1024; t=1348874460; bh=Oe1NxlK7BgZ7bFvl8el+uBVKlaZi74SK5Ph3jvQpYho=; h=X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:From:To:Subject:Date:Message-Id:X-Mailer:In-Reply-To:References; b=rtMug2hXnsudbU8qjLKQKZzmdPrOE1iGfUAF6f1qmB+wCEv1T6HM2fxrQlfLjxpAkFzeSC8NPOB780Ec3y8v1MAnCFoNm2fwyyUB1LqzPbxEMrxbs5Jda0KpXzctznErVaUk1zaR0aIUGlHpw3u2QyR4JdAsZHdDBgvJpabe53U= X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: n69SUEAVM1mejJTEG5kOO7jo6dnJ6BMYjT7pwyw2qqdebls fnFILcjqX2.cjcNasoXFIq8AU50wCsoiwFiofIkZwx7hNz_Ti0t8FsUGd_Xp pBUvL8z0cIA19bCWN_wgfgHvVo4_EgDAHhR1FUvkNa2zkKhlhjtZfitwBgQc 1TYXm1CaZf.NmcUuvca2jBJMa_hCs6hfB8CvvpFv.Oy2adVZfzZqBon4UESu zNjUXCzNdeafCKgeQ8.7AXYpMb37adXlvlMroNU6yEEGxUWjvXR6Au1CXHc_ Rn6M_2fnX2G4.o2wFvo0I8JdRiTIrWOw32drkUruomsM3A0QsuhXNLDj3L2L 6VXchlyI7iQpNxdgDZKZRfCkqXhXLMR0natD3NRefDw2atBttuKWwglaAn2s _gox6_N._9aPAoevapb27jq9M0.ovBGXhmvnUZW1SHfGoqZD0DL9C0Q-- X-Yahoo-SMTP: xXkkXk6swBBAi.5wfkIWFW3ugxbrqyhyk_b4Z25Sfu.XGQ-- Received: from localhost.localdomain (danielfsantos@99.70.244.137 with login) by smtp106.sbc.mail.mud.yahoo.com with SMTP; 28 Sep 2012 23:21:00 +0000 UTC From: Daniel Santos To: LKML , Andi Kleen , Andrea Arcangeli , Andrew Morton , Christopher Li , Daniel Santos , David Daney , David Howells , Joe Perches , Konstantin Khlebnikov , linux-sparse@vger.kernel.org, Michel Lespinasse , Paul Gortmaker , Pavel Pisa , Peter Zijlstra , Steven Rostedt Subject: [PATCH 6/10] bug.h: Replace __linktime_error with __compiletime_error Date: Fri, 28 Sep 2012 18:20:07 -0500 Message-Id: <1348874411-28288-7-git-send-email-daniel.santos@pobox.com> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1348874411-28288-1-git-send-email-daniel.santos@pobox.com> References: <1348874411-28288-1-git-send-email-daniel.santos@pobox.com> Sender: linux-sparse-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sparse@vger.kernel.org Signed-off-by: Daniel Santos --- include/linux/bug.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/bug.h b/include/linux/bug.h index aaac4bb..298a916 100644 --- a/include/linux/bug.h +++ b/include/linux/bug.h @@ -73,7 +73,7 @@ extern int __build_bug_on_failed; #define BUILD_BUG() \ do { \ extern void __build_bug_failed(void) \ - __linktime_error("BUILD_BUG failed"); \ + __compiletime_error("BUILD_BUG failed");\ __build_bug_failed(); \ } while (0)