From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 82704DE23E for ; Wed, 25 Jun 2008 02:34:13 +1000 (EST) In-Reply-To: <0DCAAAC2-52AB-4704-98C0-4E9235C3AC88@kernel.crashing.org> References: <20080624105750.0610170295@localhost.localdomain> <0DCAAAC2-52AB-4704-98C0-4E9235C3AC88@kernel.crashing.org> Mime-Version: 1.0 (Apple Message framework v623) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <440cfd52acd1f29327653d8197c0c686@kernel.crashing.org> From: Segher Boessenkool Subject: Re: [PATCH 2/9] powerpc: Add macros to access floating point registers in thread_struct. Date: Tue, 24 Jun 2008 18:33:52 +0200 To: Kumar Gala Cc: linuxppc-dev@ozlabs.org, Michael Neuling , Paul Mackerras List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , >> return user_regset_copyout(&pos, &count, &kbuf, &ubuf, >> - &target->thread.fpr, 0, -1); >> + target->thread.fpr, 0, -1); > > is there a reason we can drop the '&'? Yes, .fpr is an array. C is _such_ a fun language, heh. Segher