From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnd Bergmann Subject: Re: [PATCH net-next V2 20/23] ptp: dp83640: convert to the 64 bit get/set time methods. Date: Sun, 22 Mar 2015 03:36:31 +0100 Message-ID: <201503220336.31836.arnd@linaro.org> References: <55b6ec7c2e0c72a79762748981fad2ce2497f22d.1426973658.git.richardcochran@gmail.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Amir Vadai , Ariel Elior , Baolin Wang , Ben Hutchings , Bruce Allan , Carolyn Wyborny , Chris Metcalf , David Miller , Frank Li , Giuseppe Cavallaro , Jeff Kirsher , John Stultz , Luwei Zhou , Matthew Vick , Michael Chan , Prashant Sreedharan , Shradha Shah , Solarflare linux maintainers , Sonic Zhang , Stefan =?iso-8859-15?q?S=F8rensen?= Return-path: In-Reply-To: <55b6ec7c2e0c72a79762748981fad2ce2497f22d.1426973658.git.richardcochran@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Saturday 21 March 2015, Richard Cochran wrote: > mutex_lock(&clock->extreg_lock); > > - err = tdr_write(1, phydev, ts, PTP_LOAD_CLK); > + err = tdr_write(1, phydev, &ts, PTP_LOAD_CLK); > > mutex_unlock(&clock->extreg_lock); I don't see the change to the tdr_write() function that changes the argument from 'struct timespec ts' to 'struct timespec64 *', so this looks wrong to me. Arnd