From: Greg Kroah-Hartman Date: Tue, 3 Sep 2013 22:00:11 +0000 (-0700) Subject: SCSI: Allow MPT Fusion SAS 3.0 driver to be built into the kernel X-Git-Tag: v3.10.13~110 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e62b0f0196a7ea462d04e320cdd727aed51dd60f;p=platform%2Fkernel%2Flinux-stable.git SCSI: Allow MPT Fusion SAS 3.0 driver to be built into the kernel commit 9807b4d94911be4e4efb9a08481b24292a9edf8a upstream. Right now the Makefile for the mpt3sas driver does not even allow the driver to be built into the kernel. So fix that up, as there doesn't seem to be any obvious reason why this shouldn't be done. Signed-off-by: Greg Kroah-Hartman Acked-by: Sreekanth Reddy Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/mpt3sas/Makefile b/drivers/scsi/mpt3sas/Makefile index 4c1d2e7..efb0c4c 100644 --- a/drivers/scsi/mpt3sas/Makefile +++ b/drivers/scsi/mpt3sas/Makefile @@ -1,5 +1,5 @@ # mpt3sas makefile -obj-m += mpt3sas.o +obj-$(CONFIG_SCSI_MPT3SAS) += mpt3sas.o mpt3sas-y += mpt3sas_base.o \ mpt3sas_config.o \ mpt3sas_scsih.o \