From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751353AbdLJBbo (ORCPT ); Sat, 9 Dec 2017 20:31:44 -0500 Received: from zimbra.linuxprofi.at ([93.83.54.199]:45278 "EHLO zimbra.linuxprofi.at" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751282AbdLJBbm (ORCPT ); Sat, 9 Dec 2017 20:31:42 -0500 Date: Sun, 10 Dec 2017 02:31:40 +0100 From: Christoph =?utf-8?Q?B=C3=B6hmwalder?= To: Bartosz Golaszewski Cc: Uwe =?utf-8?Q?Kleine-K=C3=B6nig?= , Peter Rosin , linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 1/2] eeprom: at24: fix coding style issues Message-ID: <20171210013140.62bwezb2pnovf2x6@christoph-lap> Mail-Followup-To: Bartosz Golaszewski , Uwe =?utf-8?Q?Kleine-K=C3=B6nig?= , Peter Rosin , linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org References: <20171207133915.29448-1-brgl@bgdev.pl> <20171207133915.29448-2-brgl@bgdev.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20171207133915.29448-2-brgl@bgdev.pl> User-Agent: NeoMutt/20171027 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Dec 07, 2017 at 02:39:14PM +0100, Bartosz Golaszewski wrote: > -#define AT24_DEVICE_MAGIC(_len, _flags) \ > - ((1 << AT24_SIZE_FLAGS | (_flags)) \ > +#define AT24_DEVICE_MAGIC(_len, _flags) \ > + ((1 << AT24_SIZE_FLAGS | (_flags)) \ > << AT24_SIZE_BYTELEN | ilog2(_len)) Looks like there's been a whitespace accident on that first added line. (Backslash has one more tab in front of it than it should have) -- Regards, Christoph