staging: Fix SEP build
authorAlan Cox <alan@linux.intel.com>
Mon, 13 Feb 2012 22:37:20 +0000 (22:37 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Feb 2012 22:42:02 +0000 (14:42 -0800)
SEP build fails if crypto is not selected.

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sep/sep_crypto.c
drivers/staging/sep/sep_main.c

index 89b6814c70afcbb273111169673adf05b0a343fb..1cc790e9fa07e9c27d491ea4374d4e0d81bb40f7 100644 (file)
@@ -74,6 +74,8 @@
 #include "sep_dev.h"
 #include "sep_crypto.h"
 
+#if defined(CONFIG_CRYPTO) || defined(CONFIG_CRYPTO_MODULE)
+
 /* Globals for queuing */
 static spinlock_t queue_lock;
 static struct crypto_queue sep_queue;
@@ -4052,3 +4054,5 @@ void sep_crypto_takedown(void)
 
        tasklet_kill(&sep_dev->finish_tasklet);
 }
+
+#endif
index cf420f6bbe15bd03b0dd01ae198cf6eeb8f43767..ad54c2e5c9324b872b79cc82101eac0f7b0a6a13 100644 (file)
@@ -4245,7 +4245,7 @@ static int __devinit sep_probe(struct pci_dev *pdev,
        sep->power_save_setup = 1;
 #endif
        /* register kernel crypto driver */
-#if defined(CONFIG_CRYPTO)
+#if defined(CONFIG_CRYPTO) || defined(CONFIG_CRYPTO_MODULE)
        error = sep_crypto_setup();
        if (error) {
                dev_err(&sep->pdev->dev, "crypto setup failed\n");
@@ -4292,8 +4292,9 @@ static void sep_remove(struct pci_dev *pdev)
        misc_deregister(&sep->miscdev_sep);
 
        /* Unregister from kernel crypto */
+#if defined(CONFIG_CRYPTO) || defined(CONFIG_CRYPTO_MODULE)
        sep_crypto_takedown();
-
+#endif
        /* Free the irq */
        free_irq(sep->pdev->irq, sep);