diff options
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/cio/qdio_setup.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/s390/cio/qdio_setup.c b/drivers/s390/cio/qdio_setup.c index 2acc01f90a6a..74bb1a088261 100644 --- a/drivers/s390/cio/qdio_setup.c +++ b/drivers/s390/cio/qdio_setup.c | |||
@@ -22,12 +22,9 @@ | |||
22 | static struct kmem_cache *qdio_q_cache; | 22 | static struct kmem_cache *qdio_q_cache; |
23 | static struct kmem_cache *qdio_aob_cache; | 23 | static struct kmem_cache *qdio_aob_cache; |
24 | 24 | ||
25 | struct qaob *qdio_allocate_aob() | 25 | struct qaob *qdio_allocate_aob(void) |
26 | { | 26 | { |
27 | struct qaob *aob; | 27 | return kmem_cache_zalloc(qdio_aob_cache, GFP_ATOMIC); |
28 | |||
29 | aob = kmem_cache_zalloc(qdio_aob_cache, GFP_ATOMIC); | ||
30 | return aob; | ||
31 | } | 28 | } |
32 | EXPORT_SYMBOL_GPL(qdio_allocate_aob); | 29 | EXPORT_SYMBOL_GPL(qdio_allocate_aob); |
33 | 30 | ||