drivers: staging: dgap: move DG_NAME and DG_PART from "Makefile" to "dgap_driver.h"
authorChen Gang <gang.chen@asianux.com>
Sat, 21 Sep 2013 12:38:30 +0000 (20:38 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 25 Sep 2013 23:09:24 +0000 (16:09 -0700)
commit6319c61aecc7acaf39a1dc0e81a8aac6a17499ee
tree17638a992e502b3501b88e67b1fa07e143bd3797
parentb74c746120376822fb9b5a28ab419cd4e07ac44f
drivers: staging: dgap: move DG_NAME and DG_PART from "Makefile" to "dgap_driver.h"

Normally, the macros from command line are system specific macros (e.g
__linux, __KERNEL__ ...), and module own macros are usually defined in
their header files.

DG_NAME and DG_PART are driver 'dgap' owned macros which are used by
multiple files within driver, and need be defined in the driver main
header file.

So move DG_NAME and DG_PART to "dgap_driver.h", it not only can make
code clearer, but also can avoid compiling failure when EXTRA_CFLAGS
appended to make command line (e.g. "EXTRA_CFLAGS=-W").

Signed-off-by: Chen Gang <gang.chen@asianux.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgap/Makefile
drivers/staging/dgap/dgap_driver.h