mirror of https://gitee.com/openkylin/linux.git
make atapi_dmadir static
atapi_dmadir can now become static. Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
bfa274e243
commit
c5c61bda5e
|
@ -113,7 +113,7 @@ int atapi_enabled = 1;
|
|||
module_param(atapi_enabled, int, 0444);
|
||||
MODULE_PARM_DESC(atapi_enabled, "Enable discovery of ATAPI devices (0=off, 1=on)");
|
||||
|
||||
int atapi_dmadir = 0;
|
||||
static int atapi_dmadir = 0;
|
||||
module_param(atapi_dmadir, int, 0444);
|
||||
MODULE_PARM_DESC(atapi_dmadir, "Enable ATAPI DMADIR bridge support (0=off, 1=on)");
|
||||
|
||||
|
|
|
@ -56,7 +56,6 @@ enum {
|
|||
extern unsigned int ata_print_id;
|
||||
extern struct workqueue_struct *ata_aux_wq;
|
||||
extern int atapi_enabled;
|
||||
extern int atapi_dmadir;
|
||||
extern int atapi_passthru16;
|
||||
extern int libata_fua;
|
||||
extern int libata_noacpi;
|
||||
|
|
Loading…
Reference in New Issue