mirror of https://gitee.com/openkylin/linux.git
Staging: vt665x: fix built-in compiling
Fix this build error: undefined reference to "__this_module" Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
48118b53c6
commit
14386fd10c
|
@ -1,5 +1,5 @@
|
||||||
# TODO: all of these should be removed
|
# TODO: all of these should be removed
|
||||||
EXTRA_CFLAGS += -DLINUX -D__KERNEL__ -DMODULE -D__NO_VERSION__
|
EXTRA_CFLAGS += -DLINUX -D__KERNEL__ -D__NO_VERSION__
|
||||||
EXTRA_CFLAGS += -DHOSTAP
|
EXTRA_CFLAGS += -DHOSTAP
|
||||||
|
|
||||||
vt6655_stage-y += device_main.o \
|
vt6655_stage-y += device_main.o \
|
||||||
|
|
|
@ -29,13 +29,7 @@
|
||||||
#ifndef __DEVICE_H__
|
#ifndef __DEVICE_H__
|
||||||
#define __DEVICE_H__
|
#define __DEVICE_H__
|
||||||
|
|
||||||
#ifdef MODULE
|
|
||||||
#ifdef MODVERSIONS
|
|
||||||
#include <linux/modversions.h>
|
|
||||||
#endif /* MODVERSIONS */
|
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#endif /* MODULE */
|
|
||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/mm.h>
|
#include <linux/mm.h>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# TODO: all of these should be removed
|
# TODO: all of these should be removed
|
||||||
EXTRA_CFLAGS += -DLINUX -D__KERNEL__ -DMODULE -DEXPORT_SYMTAB -D__NO_VERSION__
|
EXTRA_CFLAGS += -DLINUX -D__KERNEL__ -DEXPORT_SYMTAB -D__NO_VERSION__
|
||||||
EXTRA_CFLAGS += -DHOSTAP
|
EXTRA_CFLAGS += -DHOSTAP
|
||||||
|
|
||||||
vt6656_stage-y += main_usb.o \
|
vt6656_stage-y += main_usb.o \
|
||||||
|
|
|
@ -29,13 +29,7 @@
|
||||||
#ifndef __DEVICE_H__
|
#ifndef __DEVICE_H__
|
||||||
#define __DEVICE_H__
|
#define __DEVICE_H__
|
||||||
|
|
||||||
#ifdef MODULE
|
|
||||||
#ifdef MODVERSIONS
|
|
||||||
#include <linux/modversions.h>
|
|
||||||
#endif /* MODVERSIONS */
|
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#endif /* MODULE */
|
|
||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/mm.h>
|
#include <linux/mm.h>
|
||||||
|
|
Loading…
Reference in New Issue