diff options
| author | Arve Hjønnevåg <arve@android.com> | 2012-11-26 17:20:21 -0800 | 
|---|---|---|
| committer | Arve Hjønnevåg <arve@android.com> | 2013-07-01 15:51:52 -0700 | 
| commit | 9d168cf9d7dc8284a8049f02eae3d06244694941 (patch) | |
| tree | 726bd62d2544cc2188b21c6415a2bfbee21d4cb8 /drivers/gpu | |
| parent | 3bb28260e465782c48ce5006c99b5641200e91a2 (diff) | |
| download | olio-linux-3.10-9d168cf9d7dc8284a8049f02eae3d06244694941.tar.xz olio-linux-3.10-9d168cf9d7dc8284a8049f02eae3d06244694941.zip | |
gpu: ion: Remove __GFP_NO_KSWAPD
It no longer exists.
Signed-off-by: Arve Hjønnevåg <arve@android.com>
Diffstat (limited to 'drivers/gpu')
| -rw-r--r-- | drivers/gpu/ion/ion_system_heap.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/gpu/ion/ion_system_heap.c b/drivers/gpu/ion/ion_system_heap.c index b6fdb47f8b9..e101db5da5b 100644 --- a/drivers/gpu/ion/ion_system_heap.c +++ b/drivers/gpu/ion/ion_system_heap.c @@ -27,8 +27,8 @@  #include "ion_priv.h"  static unsigned int high_order_gfp_flags = (GFP_HIGHUSER | __GFP_ZERO | -					    __GFP_NOWARN | __GFP_NORETRY | -					    __GFP_NO_KSWAPD) & ~__GFP_WAIT; +					    __GFP_NOWARN | __GFP_NORETRY) & +					   ~__GFP_WAIT;  static unsigned int low_order_gfp_flags  = (GFP_HIGHUSER | __GFP_ZERO |  					 __GFP_NOWARN);  static const unsigned int orders[] = {8, 4, 0}; |