From owner-svn-src-head@freebsd.org Sat Dec 5 15:09:21 2015 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 095F8A418CA; Sat, 5 Dec 2015 15:09:21 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBD68113B; Sat, 5 Dec 2015 15:09:20 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB5F9J1J001426; Sat, 5 Dec 2015 15:09:19 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB5F9J1O001425; Sat, 5 Dec 2015 15:09:19 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201512051509.tB5F9J1O001425@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Sat, 5 Dec 2015 15:09:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291859 - head/sys/dev/uart X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 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: Sat, 05 Dec 2015 15:09:21 -0000 Author: kevlo Date: Sat Dec 5 15:09:19 2015 New Revision: 291859 URL: https://svnweb.freebsd.org/changeset/base/291859 Log: Remove a duplicate definition. Modified: head/sys/dev/uart/uart_dev_imx.h Modified: head/sys/dev/uart/uart_dev_imx.h ============================================================================== --- head/sys/dev/uart/uart_dev_imx.h Sat Dec 5 15:08:01 2015 (r291858) +++ head/sys/dev/uart/uart_dev_imx.h Sat Dec 5 15:09:19 2015 (r291859) @@ -124,7 +124,6 @@ #define IMXUART_UFCR_TXTL_SHIFT 10 #define IMXUART_UFCR_RFDIV_MASK (0x07 << 7) #define IMXUART_UFCR_RFDIV_SHIFT 7 -#define IMXUART_UFCR_RFDIV_SHIFT 7 #define IMXUART_UFCR_RFDIV_DIV6 (0 << 7) #define IMXUART_UFCR_RFDIV_DIV5 (1 << 7) #define IMXUART_UFCR_RFDIV_DIV4 (2 << 7)