From patchwork Wed Sep 24 01:49:43 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: nick X-Patchwork-Id: 4961171 Return-Path: X-Original-To: patchwork-linux-parisc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id AE122BEEA5 for ; Wed, 24 Sep 2014 01:49:52 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DF3652025B for ; Wed, 24 Sep 2014 01:49:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 07E7020259 for ; Wed, 24 Sep 2014 01:49:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753234AbaIXBtu (ORCPT ); Tue, 23 Sep 2014 21:49:50 -0400 Received: from mail-ig0-f172.google.com ([209.85.213.172]:37488 "EHLO mail-ig0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750894AbaIXBtu (ORCPT ); Tue, 23 Sep 2014 21:49:50 -0400 Received: by mail-ig0-f172.google.com with SMTP id a13so5720068igq.5 for ; Tue, 23 Sep 2014 18:49:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=7oRi8zhlpEhbT19bi+aRoiFiWL1FymaFxpR55K9zmNg=; b=jJq2Azh+B9bfb86YtKIj7Esp8Dw5FZWU+pVyJ8C+N9b7hWC0mlhnEuPqCtkLE7YpOb 82U+z8S8DG1+nxDsJBHDZ9rptH9MpBMgiRH+BAf7G3gosLurco2kYMad55aJEaNSZSKg KdeByj6l6eglZev95PiXtNqdgTuBf0KWREf+50GU6zEqe9uvIYkSYH1BCSjSoN0bpUV3 qnrB/VARvnq9OtOsjh6KXcNal7OMcO6dZa+8aIiacY7KQpwa9zoRAUnCpO4tm/hEhuBS M5vgqANwChtov8FLlKsIzFXe0NqBhBImKT3122uSAqZvKsawyxB5Y/8DwjWmAGRgyF4C /kUg== X-Received: by 10.42.205.19 with SMTP id fo19mr7317340icb.52.1411523389357; Tue, 23 Sep 2014 18:49:49 -0700 (PDT) Received: from nick-System-Product-Name.phub.net.cable.rogers.com (CPE0026f3330aca-CM0026f3330ac6.cpe.net.cable.rogers.com. [99.231.92.7]) by mx.google.com with ESMTPSA id ci9sm3136334igb.17.2014.09.23.18.49.47 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 23 Sep 2014 18:49:48 -0700 (PDT) From: Nicholas Krause To: jejb@parisc-linux.org Cc: deller@gmx.de, akpm@linux-foundation.org, mgorman@suse.de, julia.lawall@lip6.fr, himangi774@gmail.com, linux-parisc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] parisc:Remove unnecessary FIXMES in init.c Date: Tue, 23 Sep 2014 21:49:43 -0400 Message-Id: <1411523383-9820-1-git-send-email-yocto6@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org X-Spam-Status: No, score=-7.5 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This removes the two fixmes in the file, init.c for compiler hints for comments related to compiler hints in linux_gateway_page_addr and map_hpux_gateway_page to change from FIXME to HINT in order for people reading this code to understand that these are compiler hints. Signed-off-by: Nicholas Krause --- arch/parisc/mm/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/parisc/mm/init.c b/arch/parisc/mm/init.c index 0bef864..668102e 100644 --- a/arch/parisc/mm/init.c +++ b/arch/parisc/mm/init.c @@ -733,7 +733,7 @@ static void __init pagetable_init(void) static void __init gateway_init(void) { unsigned long linux_gateway_page_addr; - /* FIXME: This is 'const' in order to trick the compiler + /* HINT: This is 'const' in order to trick the compiler into not treating it as DP-relative data. */ extern void * const linux_gateway_page; @@ -761,7 +761,7 @@ map_hpux_gateway_page(struct task_struct *tsk, struct mm_struct *mm) unsigned long start_pte; unsigned long address; unsigned long hpux_gw_page_addr; - /* FIXME: This is 'const' in order to trick the compiler + /* HINT: This is 'const' in order to trick the compiler into not treating it as DP-relative data. */ extern void * const hpux_gateway_page;