diff options
author | Kevin DuBois <kdubois@codeaurora.org> | 2010-10-19 11:35:22 -0700 |
---|---|---|
committer | Kevin DuBois <kdubois@codeaurora.org> | 2010-10-19 11:35:22 -0700 |
commit | 3472b2545f375696edeed4c9c9abebb7f856a8ce (patch) | |
tree | 70707caff6a5d7d197b8bbd0e8a75c74852d92d4 /libc | |
parent | c2581bd36b6df1b30f25c049a5b83f7983cfce48 (diff) | |
download | bionic-3472b2545f375696edeed4c9c9abebb7f856a8ce.zip bionic-3472b2545f375696edeed4c9c9abebb7f856a8ce.tar.gz bionic-3472b2545f375696edeed4c9c9abebb7f856a8ce.tar.bz2 |
msm: kgsl: add new device name to enum
Updates the device names for the graphics core to
make note of the new 2d core present on some platforms
Change-Id: Idc3e838736ece4482c7cc2dc293796c5e605d95d
Signed-off-by: Kevin DuBois <kdubois@codeaurora.org>
Diffstat (limited to 'libc')
-rw-r--r-- | libc/kernel/common/linux/msm_kgsl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/kernel/common/linux/msm_kgsl.h b/libc/kernel/common/linux/msm_kgsl.h index db8866f..2b8cc48 100644 --- a/libc/kernel/common/linux/msm_kgsl.h +++ b/libc/kernel/common/linux/msm_kgsl.h @@ -27,8 +27,9 @@ enum kgsl_deviceid { KGSL_DEVICE_YAMATO = 0x00000000, - KGSL_DEVICE_G12 = 0x00000001, - KGSL_DEVICE_MAX = 0x00000002 + KGSL_DEVICE_2D0 = 0x00000001, + KGSL_DEVICE_2D1 = 0x00000002, + KGSL_DEVICE_MAX = 0x00000003 }; enum kgsl_user_mem_type { |