diff options
author | Jason Ekstrand <[email protected]> | 2016-08-25 16:22:58 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-09-03 08:23:07 -0700 |
commit | 979d0aca6277975986f5f278cad0f37616c9d91f (patch) | |
tree | fdc374fbcc8f489c26d79420a34b58346d0a3ac8 /src/intel/common | |
parent | 527f37199929932300acc1688d8160e1f3b1d753 (diff) |
intel: Rename brw_get_device_name/info to gen_get_device_name/info
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/intel/common')
-rw-r--r-- | src/intel/common/gen_device_info.c | 4 | ||||
-rw-r--r-- | src/intel/common/gen_device_info.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/intel/common/gen_device_info.c b/src/intel/common/gen_device_info.c index 6ee55e187fc..7f1af19f98c 100644 --- a/src/intel/common/gen_device_info.c +++ b/src/intel/common/gen_device_info.c @@ -488,7 +488,7 @@ static const struct gen_device_info gen_device_info_kbl_gt4 = { }; const struct gen_device_info * -brw_get_device_info(int devid) +gen_get_device_info(int devid) { const struct gen_device_info *devinfo; switch (devid) { @@ -505,7 +505,7 @@ brw_get_device_info(int devid) } const char * -brw_get_device_name(int devid) +gen_get_device_name(int devid) { switch (devid) { #undef CHIPSET diff --git a/src/intel/common/gen_device_info.h b/src/intel/common/gen_device_info.h index ea1b75068cc..6b639d397a0 100644 --- a/src/intel/common/gen_device_info.h +++ b/src/intel/common/gen_device_info.h @@ -143,5 +143,5 @@ struct gen_device_info /** @} */ }; -const struct gen_device_info *brw_get_device_info(int devid); -const char *brw_get_device_name(int devid); +const struct gen_device_info *gen_get_device_info(int devid); +const char *gen_get_device_name(int devid); |