Linux-mm Archive mirror
 help / color / mirror / Atom feed
* [linux-next:master 1134/2932] drivers/gpu/drm/tegra/uapi.c:278:5: warning: no previous prototype for 'tegra_drm_ioctl_gem_create'
@ 2021-07-22  9:55 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2021-07-22  9:55 UTC (permalink / raw
  To: Mikko Perttunen; +Cc: kbuild-all, Linux Memory Management List, Thierry Reding

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

Hi Mikko,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   7468cbf5c917ec48c66b0dd157b306f36345cab8
commit: cdf631031f3e574b76afed51bda0ccc9d71d4a4e [1134/2932] drm/tegra: Implement new UAPI
config: arm-randconfig-r014-20210722 (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 10.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
        # https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=cdf631031f3e574b76afed51bda0ccc9d71d4a4e
        git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
        git fetch --no-tags linux-next master
        git checkout cdf631031f3e574b76afed51bda0ccc9d71d4a4e
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.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 warnings (new ones prefixed by >>):

>> drivers/gpu/drm/tegra/uapi.c:278:5: warning: no previous prototype for 'tegra_drm_ioctl_gem_create' [-Wmissing-prototypes]
     278 | int tegra_drm_ioctl_gem_create(struct drm_device *drm, void *data,
         |     ^~~~~~~~~~~~~~~~~~~~~~~~~~
>> drivers/gpu/drm/tegra/uapi.c:295:5: warning: no previous prototype for 'tegra_drm_ioctl_gem_mmap' [-Wmissing-prototypes]
     295 | int tegra_drm_ioctl_gem_mmap(struct drm_device *drm, void *data,
         |     ^~~~~~~~~~~~~~~~~~~~~~~~


vim +/tegra_drm_ioctl_gem_create +278 drivers/gpu/drm/tegra/uapi.c

   277	
 > 278	int tegra_drm_ioctl_gem_create(struct drm_device *drm, void *data,
   279				       struct drm_file *file)
   280	{
   281		struct drm_tegra_gem_create *args = data;
   282		struct tegra_bo *bo;
   283	
   284		if (args->flags)
   285			return -EINVAL;
   286	
   287		bo = tegra_bo_create_with_handle(file, drm, args->size, args->flags,
   288						 &args->handle);
   289		if (IS_ERR(bo))
   290			return PTR_ERR(bo);
   291	
   292		return 0;
   293	}
   294	
 > 295	int tegra_drm_ioctl_gem_mmap(struct drm_device *drm, void *data,

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

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-07-22  9:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-22  9:55 [linux-next:master 1134/2932] drivers/gpu/drm/tegra/uapi.c:278:5: warning: no previous prototype for 'tegra_drm_ioctl_gem_create' kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).