Re: [PATCH 5/8] lib: bitmap: remove the 'extern' keyword from function declarations
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Date: 2021-02-01 10:21:29
Also in:
linux-doc, lkml
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Date: 2021-02-01 10:21:29
Also in:
linux-doc, lkml
On Sat, Jan 30, 2021 at 09:25:08PM +0100, Bartosz Golaszewski wrote:
On Fri, Jan 29, 2021 at 4:59 PM Andy Shevchenko [off-list ref] wrote:quoted
On Fri, Jan 29, 2021 at 02:46:21PM +0100, Bartosz Golaszewski wrote:quoted
From: Bartosz Golaszewski <redacted> The 'extern' keyword doesn't have any benefits in header files. Remove it.quoted
+int __bitmap_equal(const unsigned long *bitmap1, + const unsigned long *bitmap2, unsigned int nbits);Why not int __bitmap_equal(const unsigned long *bitmap1, const unsigned long *bitmap2, unsigned int nbits); and so on? It's even in 80 limit.I feel like this is purely a matter of taste. No rules define exactly how the lines should be broken. I prefer the longer part to be below, it just looks better to my eyes.
In above case it's even logically better to split as I proposed. -- With Best Regards, Andy Shevchenko