All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RESEND 01/10] regulator: consumer: Supply missing prototypes for 3 core functions
Date: Fri, 26 Jun 2020 08:31:09 +0800	[thread overview]
Message-ID: <202006260837.zl4UmHy4%lkp@intel.com> (raw)
In-Reply-To: <20200625191708.4014533-2-lee.jones@linaro.org>

[-- Attachment #1: Type: text/plain, Size: 22548 bytes --]

Hi Lee,

I love your patch! Yet something to improve:

[auto build test ERROR on v5.8-rc2]
[also build test ERROR on next-20200625]
[cannot apply to regulator/for-next]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use  as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Lee-Jones/Fix-a-bunch-of-W-1-warnings-in-Regulator/20200626-031950
base:    48778464bb7d346b47157d21ffde2af6b2d39110
config: arm-allyesconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from include/linux/elevator.h:6,
                    from include/linux/blkdev.h:288,
                    from include/linux/blk-cgroup.h:23,
                    from include/linux/writeback.h:14,
                    from include/linux/memcontrol.h:22,
                    from include/linux/swap.h:9,
                    from include/linux/suspend.h:5,
                    from include/linux/regulator/consumer.h:35,
                    from drivers/crypto/ux500/hash/hash_core.c:28:
   include/linux/hashtable.h:27:25: error: expected declaration specifiers or '...' before '(' token
      27 | #define HASH_SIZE(name) (ARRAY_SIZE(name))
         |                         ^
   include/linux/hashtable.h:52:53: note: in expansion of macro 'HASH_SIZE'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                                     ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:548:12: note: in expansion of macro 'hash_init'
     548 | static int hash_init(struct ahash_request *req)
         |            ^~~~~~~~~
   In file included from include/linux/clk.h:13,
                    from drivers/crypto/ux500/hash/hash_core.c:16:
   drivers/crypto/ux500/hash/hash_core.c: In function 'ahash_sha1_init':
   include/linux/kernel.h:47:38: warning: division 'sizeof (struct ahash_request *) / sizeof (struct ahash_request)' does not compute the number of array elements [-Wsizeof-pointer-div]
      47 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
         |                                      ^
   include/linux/hashtable.h:27:26: note: in expansion of macro 'ARRAY_SIZE'
      27 | #define HASH_SIZE(name) (ARRAY_SIZE(name))
         |                          ^~~~~~~~~~
   include/linux/hashtable.h:52:53: note: in expansion of macro 'HASH_SIZE'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                                     ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1362:9: note: in expansion of macro 'hash_init'
    1362 |  return hash_init(req);
         |         ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1352:50: note: first 'sizeof' operand was declared here
    1352 | static int ahash_sha1_init(struct ahash_request *req)
         |                            ~~~~~~~~~~~~~~~~~~~~~~^~~
   In file included from include/linux/bits.h:23,
                    from include/linux/bitops.h:5,
                    from include/linux/kernel.h:12,
                    from include/linux/clk.h:13,
                    from drivers/crypto/ux500/hash/hash_core.c:16:
>> include/linux/build_bug.h:16:51: error: negative width in bit-field '<anonymous>'
      16 | #define BUILD_BUG_ON_ZERO(e) ((int)(sizeof(struct { int:(-!!(e)); })))
         |                                                   ^
   include/linux/compiler.h:409:28: note: in expansion of macro 'BUILD_BUG_ON_ZERO'
     409 | #define __must_be_array(a) BUILD_BUG_ON_ZERO(__same_type((a), &(a)[0]))
         |                            ^~~~~~~~~~~~~~~~~
   include/linux/kernel.h:47:59: note: in expansion of macro '__must_be_array'
      47 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
         |                                                           ^~~~~~~~~~~~~~~
   include/linux/hashtable.h:27:26: note: in expansion of macro 'ARRAY_SIZE'
      27 | #define HASH_SIZE(name) (ARRAY_SIZE(name))
         |                          ^~~~~~~~~~
   include/linux/hashtable.h:52:53: note: in expansion of macro 'HASH_SIZE'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                                     ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1362:9: note: in expansion of macro 'hash_init'
    1362 |  return hash_init(req);
         |         ^~~~~~~~~
   In file included from include/linux/elevator.h:6,
                    from include/linux/blkdev.h:288,
                    from include/linux/blk-cgroup.h:23,
                    from include/linux/writeback.h:14,
                    from include/linux/memcontrol.h:22,
                    from include/linux/swap.h:9,
                    from include/linux/suspend.h:5,
                    from include/linux/regulator/consumer.h:35,
                    from drivers/crypto/ux500/hash/hash_core.c:28:
   drivers/crypto/ux500/hash/hash_core.c:1362:19: error: passing argument 1 of '__hash_init' from incompatible pointer type [-Werror=incompatible-pointer-types]
    1362 |  return hash_init(req);
         |                   ^~~
         |                   |
         |                   struct ahash_request *
   include/linux/hashtable.h:52:42: note: in definition of macro 'hash_init'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                          ^~~~~~~~~
   include/linux/hashtable.h:34:51: note: expected 'struct hlist_head *' but argument is of type 'struct ahash_request *'
      34 | static inline void __hash_init(struct hlist_head *ht, unsigned int sz)
         |                                ~~~~~~~~~~~~~~~~~~~^~
   include/linux/hashtable.h:52:30: error: void value not ignored as it ought to be
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1362:9: note: in expansion of macro 'hash_init'
    1362 |  return hash_init(req);
         |         ^~~~~~~~~
   In file included from include/linux/clk.h:13,
                    from drivers/crypto/ux500/hash/hash_core.c:16:
   drivers/crypto/ux500/hash/hash_core.c: In function 'ahash_sha256_init':
   include/linux/kernel.h:47:38: warning: division 'sizeof (struct ahash_request *) / sizeof (struct ahash_request)' does not compute the number of array elements [-Wsizeof-pointer-div]
      47 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
         |                                      ^
   include/linux/hashtable.h:27:26: note: in expansion of macro 'ARRAY_SIZE'
      27 | #define HASH_SIZE(name) (ARRAY_SIZE(name))
         |                          ^~~~~~~~~~
   include/linux/hashtable.h:52:53: note: in expansion of macro 'HASH_SIZE'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                                     ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1375:9: note: in expansion of macro 'hash_init'
    1375 |  return hash_init(req);
         |         ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1365:52: note: first 'sizeof' operand was declared here
    1365 | static int ahash_sha256_init(struct ahash_request *req)
         |                              ~~~~~~~~~~~~~~~~~~~~~~^~~
   In file included from include/linux/bits.h:23,
                    from include/linux/bitops.h:5,
                    from include/linux/kernel.h:12,
                    from include/linux/clk.h:13,
                    from drivers/crypto/ux500/hash/hash_core.c:16:
>> include/linux/build_bug.h:16:51: error: negative width in bit-field '<anonymous>'
      16 | #define BUILD_BUG_ON_ZERO(e) ((int)(sizeof(struct { int:(-!!(e)); })))
         |                                                   ^
   include/linux/compiler.h:409:28: note: in expansion of macro 'BUILD_BUG_ON_ZERO'
     409 | #define __must_be_array(a) BUILD_BUG_ON_ZERO(__same_type((a), &(a)[0]))
         |                            ^~~~~~~~~~~~~~~~~
   include/linux/kernel.h:47:59: note: in expansion of macro '__must_be_array'
      47 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
         |                                                           ^~~~~~~~~~~~~~~
   include/linux/hashtable.h:27:26: note: in expansion of macro 'ARRAY_SIZE'
      27 | #define HASH_SIZE(name) (ARRAY_SIZE(name))
         |                          ^~~~~~~~~~
   include/linux/hashtable.h:52:53: note: in expansion of macro 'HASH_SIZE'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                                     ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1375:9: note: in expansion of macro 'hash_init'
    1375 |  return hash_init(req);
         |         ^~~~~~~~~
   In file included from include/linux/elevator.h:6,
                    from include/linux/blkdev.h:288,
                    from include/linux/blk-cgroup.h:23,
                    from include/linux/writeback.h:14,
                    from include/linux/memcontrol.h:22,
                    from include/linux/swap.h:9,
                    from include/linux/suspend.h:5,
                    from include/linux/regulator/consumer.h:35,
                    from drivers/crypto/ux500/hash/hash_core.c:28:
   drivers/crypto/ux500/hash/hash_core.c:1375:19: error: passing argument 1 of '__hash_init' from incompatible pointer type [-Werror=incompatible-pointer-types]
    1375 |  return hash_init(req);
         |                   ^~~
         |                   |
         |                   struct ahash_request *
   include/linux/hashtable.h:52:42: note: in definition of macro 'hash_init'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                          ^~~~~~~~~
   include/linux/hashtable.h:34:51: note: expected 'struct hlist_head *' but argument is of type 'struct ahash_request *'
      34 | static inline void __hash_init(struct hlist_head *ht, unsigned int sz)
         |                                ~~~~~~~~~~~~~~~~~~~^~
   include/linux/hashtable.h:52:30: error: void value not ignored as it ought to be
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1375:9: note: in expansion of macro 'hash_init'
    1375 |  return hash_init(req);
         |         ^~~~~~~~~
   In file included from include/linux/clk.h:13,
                    from drivers/crypto/ux500/hash/hash_core.c:16:
   drivers/crypto/ux500/hash/hash_core.c: In function 'hmac_sha1_init':
   include/linux/kernel.h:47:38: warning: division 'sizeof (struct ahash_request *) / sizeof (struct ahash_request)' does not compute the number of array elements [-Wsizeof-pointer-div]
      47 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
         |                                      ^
   include/linux/hashtable.h:27:26: note: in expansion of macro 'ARRAY_SIZE'
      27 | #define HASH_SIZE(name) (ARRAY_SIZE(name))
         |                          ^~~~~~~~~~
   include/linux/hashtable.h:52:53: note: in expansion of macro 'HASH_SIZE'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                                     ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1428:9: note: in expansion of macro 'hash_init'
    1428 |  return hash_init(req);
         |         ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1418:49: note: first 'sizeof' operand was declared here
    1418 | static int hmac_sha1_init(struct ahash_request *req)
         |                           ~~~~~~~~~~~~~~~~~~~~~~^~~
   In file included from include/linux/bits.h:23,
                    from include/linux/bitops.h:5,
                    from include/linux/kernel.h:12,
                    from include/linux/clk.h:13,
                    from drivers/crypto/ux500/hash/hash_core.c:16:
>> include/linux/build_bug.h:16:51: error: negative width in bit-field '<anonymous>'
      16 | #define BUILD_BUG_ON_ZERO(e) ((int)(sizeof(struct { int:(-!!(e)); })))
         |                                                   ^
   include/linux/compiler.h:409:28: note: in expansion of macro 'BUILD_BUG_ON_ZERO'
     409 | #define __must_be_array(a) BUILD_BUG_ON_ZERO(__same_type((a), &(a)[0]))
         |                            ^~~~~~~~~~~~~~~~~
   include/linux/kernel.h:47:59: note: in expansion of macro '__must_be_array'
      47 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
         |                                                           ^~~~~~~~~~~~~~~
   include/linux/hashtable.h:27:26: note: in expansion of macro 'ARRAY_SIZE'
      27 | #define HASH_SIZE(name) (ARRAY_SIZE(name))
         |                          ^~~~~~~~~~
   include/linux/hashtable.h:52:53: note: in expansion of macro 'HASH_SIZE'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                                     ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1428:9: note: in expansion of macro 'hash_init'
    1428 |  return hash_init(req);
         |         ^~~~~~~~~
   In file included from include/linux/elevator.h:6,
                    from include/linux/blkdev.h:288,
                    from include/linux/blk-cgroup.h:23,
                    from include/linux/writeback.h:14,
                    from include/linux/memcontrol.h:22,
                    from include/linux/swap.h:9,
                    from include/linux/suspend.h:5,
                    from include/linux/regulator/consumer.h:35,
                    from drivers/crypto/ux500/hash/hash_core.c:28:
   drivers/crypto/ux500/hash/hash_core.c:1428:19: error: passing argument 1 of '__hash_init' from incompatible pointer type [-Werror=incompatible-pointer-types]
    1428 |  return hash_init(req);
         |                   ^~~
         |                   |
         |                   struct ahash_request *
   include/linux/hashtable.h:52:42: note: in definition of macro 'hash_init'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                          ^~~~~~~~~
   include/linux/hashtable.h:34:51: note: expected 'struct hlist_head *' but argument is of type 'struct ahash_request *'
      34 | static inline void __hash_init(struct hlist_head *ht, unsigned int sz)
         |                                ~~~~~~~~~~~~~~~~~~~^~
   include/linux/hashtable.h:52:30: error: void value not ignored as it ought to be
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1428:9: note: in expansion of macro 'hash_init'
    1428 |  return hash_init(req);
         |         ^~~~~~~~~
   In file included from include/linux/clk.h:13,
                    from drivers/crypto/ux500/hash/hash_core.c:16:
   drivers/crypto/ux500/hash/hash_core.c: In function 'hmac_sha256_init':
   include/linux/kernel.h:47:38: warning: division 'sizeof (struct ahash_request *) / sizeof (struct ahash_request)' does not compute the number of array elements [-Wsizeof-pointer-div]
      47 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
         |                                      ^
   include/linux/hashtable.h:27:26: note: in expansion of macro 'ARRAY_SIZE'
      27 | #define HASH_SIZE(name) (ARRAY_SIZE(name))
         |                          ^~~~~~~~~~
   include/linux/hashtable.h:52:53: note: in expansion of macro 'HASH_SIZE'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                                     ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1441:9: note: in expansion of macro 'hash_init'
    1441 |  return hash_init(req);
         |         ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1431:51: note: first 'sizeof' operand was declared here
    1431 | static int hmac_sha256_init(struct ahash_request *req)
         |                             ~~~~~~~~~~~~~~~~~~~~~~^~~
   In file included from include/linux/bits.h:23,
                    from include/linux/bitops.h:5,
                    from include/linux/kernel.h:12,
                    from include/linux/clk.h:13,
                    from drivers/crypto/ux500/hash/hash_core.c:16:
>> include/linux/build_bug.h:16:51: error: negative width in bit-field '<anonymous>'
      16 | #define BUILD_BUG_ON_ZERO(e) ((int)(sizeof(struct { int:(-!!(e)); })))
         |                                                   ^
   include/linux/compiler.h:409:28: note: in expansion of macro 'BUILD_BUG_ON_ZERO'
     409 | #define __must_be_array(a) BUILD_BUG_ON_ZERO(__same_type((a), &(a)[0]))
         |                            ^~~~~~~~~~~~~~~~~
   include/linux/kernel.h:47:59: note: in expansion of macro '__must_be_array'
      47 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
         |                                                           ^~~~~~~~~~~~~~~
   include/linux/hashtable.h:27:26: note: in expansion of macro 'ARRAY_SIZE'
      27 | #define HASH_SIZE(name) (ARRAY_SIZE(name))
         |                          ^~~~~~~~~~
   include/linux/hashtable.h:52:53: note: in expansion of macro 'HASH_SIZE'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                                     ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1441:9: note: in expansion of macro 'hash_init'
    1441 |  return hash_init(req);
         |         ^~~~~~~~~
   In file included from include/linux/elevator.h:6,
                    from include/linux/blkdev.h:288,
                    from include/linux/blk-cgroup.h:23,
                    from include/linux/writeback.h:14,
                    from include/linux/memcontrol.h:22,
                    from include/linux/swap.h:9,
                    from include/linux/suspend.h:5,
                    from include/linux/regulator/consumer.h:35,
                    from drivers/crypto/ux500/hash/hash_core.c:28:
   drivers/crypto/ux500/hash/hash_core.c:1441:19: error: passing argument 1 of '__hash_init' from incompatible pointer type [-Werror=incompatible-pointer-types]
    1441 |  return hash_init(req);
         |                   ^~~
         |                   |
         |                   struct ahash_request *
   include/linux/hashtable.h:52:42: note: in definition of macro 'hash_init'
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                                          ^~~~~~~~~
   include/linux/hashtable.h:34:51: note: expected 'struct hlist_head *' but argument is of type 'struct ahash_request *'
      34 | static inline void __hash_init(struct hlist_head *ht, unsigned int sz)
         |                                ~~~~~~~~~~~~~~~~~~~^~
   include/linux/hashtable.h:52:30: error: void value not ignored as it ought to be
      52 | #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable))
         |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c:1441:9: note: in expansion of macro 'hash_init'
    1441 |  return hash_init(req);
         |         ^~~~~~~~~
   drivers/crypto/ux500/hash/hash_core.c: At top level:
   drivers/crypto/ux500/hash/hash_core.c:1518:12: error: 'hash_init' undeclared here (not in a function); did you mean 'sha1_init'?
    1518 |    .init = hash_init,
         |            ^~~~~~~~~
         |            sha1_init
   drivers/crypto/ux500/hash/hash_core.c:531:13: warning: 'hash_dma_valid_data' defined but not used [-Wunused-function]
     531 | static bool hash_dma_valid_data(struct scatterlist *sg, int datasize)
         |             ^~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors

vim +16 include/linux/build_bug.h

bc6245e5efd70c Ian Abbott       2017-07-10   6  
bc6245e5efd70c Ian Abbott       2017-07-10   7  #ifdef __CHECKER__
bc6245e5efd70c Ian Abbott       2017-07-10   8  #define BUILD_BUG_ON_ZERO(e) (0)
bc6245e5efd70c Ian Abbott       2017-07-10   9  #else /* __CHECKER__ */
bc6245e5efd70c Ian Abbott       2017-07-10  10  /*
bc6245e5efd70c Ian Abbott       2017-07-10  11   * Force a compilation error if condition is true, but also produce a
8788994376d84d Rikard Falkeborn 2019-12-04  12   * result (of value 0 and type int), so the expression can be used
bc6245e5efd70c Ian Abbott       2017-07-10  13   * e.g. in a structure initializer (or where-ever else comma expressions
bc6245e5efd70c Ian Abbott       2017-07-10  14   * aren't permitted).
bc6245e5efd70c Ian Abbott       2017-07-10  15   */
8788994376d84d Rikard Falkeborn 2019-12-04 @16  #define BUILD_BUG_ON_ZERO(e) ((int)(sizeof(struct { int:(-!!(e)); })))
527edbc18a70e7 Masahiro Yamada  2019-01-03  17  #endif /* __CHECKER__ */
527edbc18a70e7 Masahiro Yamada  2019-01-03  18  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 75690 bytes --]

  reply	other threads:[~2020-06-26  0:31 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-25 19:16 [RESEND 00/10] Fix a bunch of W=1 warnings in Regulator Lee Jones
2020-06-25 19:16 ` Lee Jones
2020-06-25 19:16 ` [RESEND 01/10] regulator: consumer: Supply missing prototypes for 3 core functions Lee Jones
2020-06-25 19:16   ` Lee Jones
2020-06-26  0:31   ` kernel test robot [this message]
2020-06-25 19:17 ` [RESEND 02/10] regulator: devres: Fix issues with kerneldoc headers Lee Jones
2020-06-25 19:17   ` Lee Jones
2020-06-25 19:17 ` [RESEND 03/10] regulator: of_regulator: Add missing colon for rdev kerneldoc argument Lee Jones
2020-06-25 19:17   ` Lee Jones
2020-06-25 19:17 ` [RESEND 04/10] regulator: dbx500-prcmu: Remove unused function dbx500_regulator_testcase() Lee Jones
2020-06-25 19:17   ` Lee Jones
2020-07-07 12:41   ` Linus Walleij
2020-07-07 12:41     ` Linus Walleij
2020-06-25 19:17 ` [RESEND 05/10] regulator: ab8500: Remove unused embedded struct expand_register Lee Jones
2020-06-25 19:17   ` Lee Jones
2020-07-07 12:42   ` Linus Walleij
2020-07-07 12:42     ` Linus Walleij
2020-06-25 19:17 ` [RESEND 06/10] regulator: wm8350-regulator: Repair odd formatting in documentation Lee Jones
2020-06-25 19:17   ` Lee Jones
2020-06-26 10:42   ` Charles Keepax
2020-06-26 10:42     ` Charles Keepax
2020-06-25 19:17 ` [RESEND 07/10] regulator: cpcap-regulator: Remove declared and set, but never used variable 'ignore' Lee Jones
2020-06-25 19:17   ` Lee Jones
2020-06-29 18:26   ` Tony Lindgren
2020-06-29 18:26     ` Tony Lindgren
2020-06-25 19:17 ` [RESEND 08/10] regulator: cpcap-regulator: Demote kerneldoc header to standard comment Lee Jones
2020-06-25 19:17   ` Lee Jones
2020-06-25 19:17 ` [RESEND 09/10] regulator: da9063-regulator: Fix .suspend 'initialized field overwritten' warnings Lee Jones
2020-06-25 19:17   ` Lee Jones
2020-06-26  8:49   ` Adam Thomson
2020-06-26  8:49     ` Adam Thomson
2020-06-25 19:17 ` [RESEND 10/10] regulator: max14577-regulator: Demote kerneldoc header to standard comment Lee Jones
2020-06-25 19:17   ` Lee Jones
2020-06-25 19:48 ` [RESEND 00/10] Fix a bunch of W=1 warnings in Regulator Mark Brown
2020-06-25 19:48   ` Mark Brown
2020-06-26  9:36   ` Lee Jones
2020-06-26  9:36     ` Lee Jones
2020-06-26 13:35     ` Mark Brown
2020-06-26 13:35       ` Mark Brown
2020-06-26 15:16 ` Mark Brown
2020-06-26 15:16   ` Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202006260837.zl4UmHy4%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.