From owner-svn-src-all@FreeBSD.ORG Sat Mar 17 07:29:11 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0C631065674; Sat, 17 Mar 2012 07:29:11 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E039F8FC1A; Sat, 17 Mar 2012 07:29:11 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q2H7TBsL056234; Sat, 17 Mar 2012 07:29:11 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q2H7TBDv056232; Sat, 17 Mar 2012 07:29:11 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201203170729.q2H7TBDv056232@svn.freebsd.org> From: Adrian Chadd Date: Sat, 17 Mar 2012 07:29:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r233082 - head/sys/mips/atheros X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Mar 2012 07:29:12 -0000 Author: adrian Date: Sat Mar 17 07:29:11 2012 New Revision: 233082 URL: http://svn.freebsd.org/changeset/base/233082 Log: style(9) changes. Modified: head/sys/mips/atheros/ar724x_chip.c Modified: head/sys/mips/atheros/ar724x_chip.c ============================================================================== --- head/sys/mips/atheros/ar724x_chip.c Sat Mar 17 07:25:23 2012 (r233081) +++ head/sys/mips/atheros/ar724x_chip.c Sat Mar 17 07:29:11 2012 (r233082) @@ -125,6 +125,7 @@ ar724x_chip_device_stopped(uint32_t mask static void ar724x_chip_set_mii_speed(uint32_t unit, uint32_t speed) { + /* XXX TODO */ return; } @@ -221,15 +222,15 @@ ar724x_chip_init_usb_peripheral(void) } struct ar71xx_cpu_def ar724x_chip_def = { - &ar724x_chip_detect_mem_size, - &ar724x_chip_detect_sys_frequency, - &ar724x_chip_device_stop, - &ar724x_chip_device_start, - &ar724x_chip_device_stopped, - &ar724x_chip_set_pll_ge, + &ar724x_chip_detect_mem_size, + &ar724x_chip_detect_sys_frequency, + &ar724x_chip_device_stop, + &ar724x_chip_device_start, + &ar724x_chip_device_stopped, + &ar724x_chip_set_pll_ge, &ar724x_chip_set_mii_speed, - &ar724x_chip_ddr_flush_ge, - &ar724x_chip_get_eth_pll, - &ar724x_chip_ddr_flush_ip2, + &ar724x_chip_ddr_flush_ge, + &ar724x_chip_get_eth_pll, + &ar724x_chip_ddr_flush_ip2, &ar724x_chip_init_usb_peripheral };