tree: git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master head: 87dd3f17d47090b0ea00fecd50187eaf9f1b914c commit: 2747a652ba082d2545196cdc694d700ee81a2467 [13555/13557] genalloc-rename-dev_get_gen_pool-to-gen_pool_get-fix config: arm-allyesconfig (attached as .config) reproduce: wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross git checkout 2747a652ba082d2545196cdc694d700ee81a2467 # save the attached .config to linux build tree make.cross ARCH=arm All error/warnings (new ones prefixed by >>): arch/arm/mach-socfpga/pm.c: In function 'socfpga_setup_ocram_self_refresh': >> arch/arm/mach-socfpga/pm.c:59:2: error: implicit declaration of function 'get_gen_pool' [-Werror=implicit-function-declaration] ocram_pool = get_gen_pool(&pdev->dev); ^ arch/arm/mach-socfpga/pm.c:59:13: warning: assignment makes pointer from integer without a cast ocram_pool = get_gen_pool(&pdev->dev); ^ cc1: some warnings being treated as errors vim +/get_gen_pool +59 arch/arm/mach-socfpga/pm.c 53 if (!pdev) { 54 pr_warn("%s: failed to find ocram device!\n", __func__); 55 ret = -ENODEV; 56 goto put_node; 57 } 58 > 59 ocram_pool = get_gen_pool(&pdev->dev); 60 if (!ocram_pool) { 61 pr_warn("%s: ocram pool unavailable!\n", __func__); 62 ret = -ENODEV; --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation