From owner-svn-src-head@freebsd.org Thu Jan 26 01:56:22 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89736CC1D7B; Thu, 26 Jan 2017 01:56:22 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-io0-x243.google.com (mail-io0-x243.google.com [IPv6:2607:f8b0:4001:c06::243]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49D05E6C; Thu, 26 Jan 2017 01:56:22 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-io0-x243.google.com with SMTP id m98so3828566iod.2; Wed, 25 Jan 2017 17:56:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=kz3iAF2v04yFZuEGsknrE5hTPerNFotWr/p0QXp6/L0=; b=GqsJoEJbHjrV57Rs+uS2yr6bKcOnzrCNlyF7mo5KO2R1kiNrhnI5RdsWGbebs/w2DT gIaBnapr4YRcvPwUXl0VbMZs8tR9rlart4aFXXph1Q43FeZMTZzzGsfukIUiZPXX5haA +UWgwoyaG8A1fKuCMvwLi6oUi8iUKLBEFYY8ye4ndW4tlSVA3wp8SZndtfvs5l5spQ0s 9u6VVBBlyw8fuikB57x/CDMpiqyFtS0gilA08IimwzdpbiVXZqEskFhU5nB78Q0gtYZq CDTG71+rhfSfvLKbOfph8HX0Kve6kmDwx51t+TR7zUsYtTKfMLeHZm3qRsZiXCXL/yg/ /TMg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=kz3iAF2v04yFZuEGsknrE5hTPerNFotWr/p0QXp6/L0=; b=GltDK2Y4L9jfG69flcS02jq/XsxOVekJZsBjBU5DTifljP9wzhkcNlG1AFtbdtGsK8 YNCofvtg1np8Y996/sQrrP9d8xOSxUsXlH7Nwo+kbI9+fVR8UoYHTaTnzUy4yAY2PwoJ Yoy7dZVPXhABsO7Iz5QY339T7cC0ajfvAbMDleCSW3oUDsYnvtWID1B2rUcU40OXFqBT LN0yuemJEeTCe1oszJsWF/upopseMejsPoaN7afthX9ipWaf9JxkL4uAzTQwxyavgmvk EBDgTCqJLvbjEd8cDvz/0OV65JkqNBISn8nKRHoYeNUVsa5mOnRbh4B/NCjEA9PBj+hY 0eQQ== X-Gm-Message-State: AIkVDXJYHZgI0uQ40Aoo9JJtEl4xfU36b7jBTQ8CSEdayd3T4xOlZrdypmeFL14K71aWDEtZiS3U6h8Diu7SRQ== X-Received: by 10.107.23.69 with SMTP id 66mr677952iox.162.1485395781484; Wed, 25 Jan 2017 17:56:21 -0800 (PST) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.107.175.159 with HTTP; Wed, 25 Jan 2017 17:56:00 -0800 (PST) In-Reply-To: <201701251031.v0PAVGlM050105@repo.freebsd.org> References: <201701251031.v0PAVGlM050105@repo.freebsd.org> From: Ed Maste Date: Wed, 25 Jan 2017 20:56:00 -0500 X-Google-Sender-Auth: GaQ1FmetR7pltgo8HH6par-k_EA Message-ID: Subject: Re: svn commit: r312747 - head/sys/arm/mv To: Wojciech Macek Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jan 2017 01:56:22 -0000 On 25 January 2017 at 05:31, Wojciech Macek wrote: > Author: wma > Date: Wed Jan 25 10:31:16 2017 > New Revision: 312747 > URL: https://svnweb.freebsd.org/changeset/base/312747 > > Log: > Setup decoding windows for ARMADA38X > > It is necesarry to open memory windows on internal bus for > AHCI driver to work correctly. Build broken with: /scratch/tmp/emaste/freebsd/sys/arm/mv/mv_common.c:2019:3: error: implicit declaration of function 'win_sata_sz_write' is invalid in C99 [-Werror,-Wimplicit-function-declaration] win_sata_sz_write(base, i, 0); ^ /scratch/tmp/emaste/freebsd/sys/arm/mv/mv_common.c:2024:25: error: use of undeclared identifier 'IO_WIN_ATTR_SHIFT' cr = (ddr_attr(i) << IO_WIN_ATTR_SHIFT) | ^ ...