From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Fuzzey Subject: Re: [11/51] Input: atmel_mxt_ts - Implement CRC check for configuration data Date: Wed, 18 Sep 2013 18:59:10 +0200 Message-ID: <5239DBDE.7010709@parkeon.com> References: <1372337366-9286-12-git-send-email-nick.dyer@itdev.co.uk> Reply-To: mfuzzey@parkeon.com Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mta1.parkeon.com ([91.121.43.66]:33981 "EHLO mta1.parkeon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752116Ab3IRR3f (ORCPT ); Wed, 18 Sep 2013 13:29:35 -0400 In-Reply-To: <1372337366-9286-12-git-send-email-nick.dyer@itdev.co.uk> Sender: linux-input-owner@vger.kernel.org List-Id: linux-input@vger.kernel.org To: Nick Dyer Cc: Dmitry Torokhov , Daniel Kurtz , Henrik Rydberg , Joonyoung Shim , Alan Bowens , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Peter Meerwald , Benson Leung , Olof Johansson On 27/06/13 14:48, Nick Dyer wrote: > The configuration is stored in NVRAM on the maXTouch chip. When the device is > reset it reports a CRC of the stored configuration values. Therefore it isn't > necessary to send the configuration on each probe - we can check the CRC > matches and avoid a timeconsuming backup/reset cycle. > > Signed-off-by: Nick Dyer > Acked-by: Benson Leung > -static unsigned mxt_extract_T6_csum(const u8 *csum) > +static u16 mxt_extract_T6_csum(const u8 *csum) > { > return csum[0] | (csum[1] << 8) | (csum[2] << 16); > } Shouldn't this be u32? It's losing data causing the checksums not to match for me.