summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common')
-rw-r--r--drivers/gpu/nvgpu/common/linux/kmem.c2
-rw-r--r--drivers/gpu/nvgpu/common/mm/lockless_allocator.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/kmem.c b/drivers/gpu/nvgpu/common/linux/kmem.c
index 87aeb184..a2e49e7a 100644
--- a/drivers/gpu/nvgpu/common/linux/kmem.c
+++ b/drivers/gpu/nvgpu/common/linux/kmem.c
@@ -16,7 +16,6 @@
16 16
17#include <linux/mutex.h> 17#include <linux/mutex.h>
18#include <linux/slab.h> 18#include <linux/slab.h>
19#include <linux/atomic.h>
20#include <linux/rbtree.h> 19#include <linux/rbtree.h>
21#include <linux/debugfs.h> 20#include <linux/debugfs.h>
22#include <linux/spinlock.h> 21#include <linux/spinlock.h>
@@ -25,6 +24,7 @@
25#include <linux/stacktrace.h> 24#include <linux/stacktrace.h>
26 25
27#include <nvgpu/kmem.h> 26#include <nvgpu/kmem.h>
27#include <nvgpu/atomic.h>
28 28
29#include "gk20a/gk20a.h" 29#include "gk20a/gk20a.h"
30 30
diff --git a/drivers/gpu/nvgpu/common/mm/lockless_allocator.c b/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
index 93c870b5..dc72d8bf 100644
--- a/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
+++ b/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
@@ -14,8 +14,7 @@
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16 16
17#include <linux/atomic.h> 17#include <nvgpu/atomic.h>
18
19#include <nvgpu/allocator.h> 18#include <nvgpu/allocator.h>
20#include <nvgpu/kmem.h> 19#include <nvgpu/kmem.h>
21 20