]> Git Repo - linux.git/blobdiff - drivers/usb/core/buffer.c
crypto: akcipher - Drop sign/verify operations
[linux.git] / drivers / usb / core / buffer.c
index 268ccbec88f951ab44ad5f410dc19a3a22e3c7a7..87230869e1fa15d40689321d29f57c5a94eeafc8 100644 (file)
@@ -34,13 +34,13 @@ void __init usb_init_pool_max(void)
 {
        /*
         * The pool_max values must never be smaller than
-        * ARCH_KMALLOC_MINALIGN.
+        * ARCH_DMA_MINALIGN.
         */
-       if (ARCH_KMALLOC_MINALIGN <= 32)
+       if (ARCH_DMA_MINALIGN <= 32)
                ;                       /* Original value is okay */
-       else if (ARCH_KMALLOC_MINALIGN <= 64)
+       else if (ARCH_DMA_MINALIGN <= 64)
                pool_max[0] = 64;
-       else if (ARCH_KMALLOC_MINALIGN <= 128)
+       else if (ARCH_DMA_MINALIGN <= 128)
                pool_max[0] = 0;        /* Don't use this pool */
        else
                BUILD_BUG();            /* We don't allow this */
This page took 0.036256 seconds and 4 git commands to generate.