Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: gma500: remove psb_gfx.mod.c

The mod.c file should not be part of the repo.

Cc: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

-27
-27
drivers/staging/gma500/psb_gfx.mod.c
··· 1 - #include <linux/module.h> 2 - #include <linux/vermagic.h> 3 - #include <linux/compiler.h> 4 - 5 - MODULE_INFO(vermagic, VERMAGIC_STRING); 6 - 7 - struct module __this_module 8 - __attribute__((section(".gnu.linkonce.this_module"))) = { 9 - .name = KBUILD_MODNAME, 10 - .init = init_module, 11 - #ifdef CONFIG_MODULE_UNLOAD 12 - .exit = cleanup_module, 13 - #endif 14 - .arch = MODULE_ARCH_INIT, 15 - }; 16 - 17 - MODULE_INFO(staging, "Y"); 18 - 19 - static const char __module_depends[] 20 - __used 21 - __attribute__((section(".modinfo"))) = 22 - "depends=ttm,drm,drm_kms_helper,i2c-core,cfbfillrect,cfbimgblt,cfbcopyarea,i2c-algo-bit"; 23 - 24 - MODULE_ALIAS("pci:v00008086d00008108sv*sd*bc*sc*i*"); 25 - MODULE_ALIAS("pci:v00008086d00008109sv*sd*bc*sc*i*"); 26 - 27 - MODULE_INFO(srcversion, "933CCC78041722973001B78");