diff options
author | David Schleef <ds@ti.com> | 2012-03-12 16:40:11 -0700 |
---|---|---|
committer | Ziyann <jaraidaniel@gmail.com> | 2014-10-01 12:58:32 +0200 |
commit | b90d6975608339ba8b56e2155cd8745f261bb51e (patch) | |
tree | 75c91c7fb7638f13a994384f24a54bc692d96ad4 | |
parent | 7b1e8017bbb06d0d04eb78e62596e364419b15db (diff) | |
download | kernel_samsung_tuna-b90d6975608339ba8b56e2155cd8745f261bb51e.zip kernel_samsung_tuna-b90d6975608339ba8b56e2155cd8745f261bb51e.tar.gz kernel_samsung_tuna-b90d6975608339ba8b56e2155cd8745f261bb51e.tar.bz2 |
ion: fix comment to match reality
Change-Id: Ib722e6c34965bf48ca5bdaaef3b4741146cc1508
Signed-off-by: David Schleef <ds@ti.com>
-rw-r--r-- | drivers/gpu/ion/ion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/ion/ion.c b/drivers/gpu/ion/ion.c index 194cff1..eb072fc 100644 --- a/drivers/gpu/ion/ion.c +++ b/drivers/gpu/ion/ion.c @@ -328,7 +328,7 @@ struct ion_handle *ion_alloc(struct ion_client *client, size_t len, /* if the client doesn't support this heap type */ if (!((1 << heap->type) & client->heap_mask)) continue; - /* if the caller didn't specify this heap type */ + /* if the caller didn't specify this heap ID */ if (!((1 << heap->id) & flags)) continue; buffer = ion_buffer_create(heap, dev, len, align, flags); |