projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5597774
)
include/uapi/linux: Fix indentation in kfd_smi_event enum
author
Mukul Joshi
<mukul.joshi@amd.com>
Fri, 28 Aug 2020 23:53:08 +0000
(19:53 -0400)
committer
Alex Deucher
<alexander.deucher@amd.com>
Mon, 31 Aug 2020 18:40:29 +0000
(14:40 -0400)
Replace spaces with Tabs to fix indentation in kfd_smi_event
enum.
Signed-off-by: Mukul Joshi <mukul.joshi@amd.com>
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
include/uapi/linux/kfd_ioctl.h
patch
|
blob
|
history
diff --git
a/include/uapi/linux/kfd_ioctl.h
b/include/uapi/linux/kfd_ioctl.h
index
8b7368b
..
695b606
100644
(file)
--- a/
include/uapi/linux/kfd_ioctl.h
+++ b/
include/uapi/linux/kfd_ioctl.h
@@
-450,9
+450,9
@@
struct kfd_ioctl_import_dmabuf_args {
* KFD SMI(System Management Interface) events
*/
enum kfd_smi_event {
-
KFD_SMI_EVENT_NONE = 0, /* not used */
-
KFD_SMI_EVENT_VMFAULT = 1, /* event start counting at 1 */
-
KFD_SMI_EVENT_THERMAL_THROTTLE = 2,
+ KFD_SMI_EVENT_NONE = 0, /* not used */
+ KFD_SMI_EVENT_VMFAULT = 1, /* event start counting at 1 */
+ KFD_SMI_EVENT_THERMAL_THROTTLE = 2,
KFD_SMI_EVENT_GPU_PRE_RESET = 3,
KFD_SMI_EVENT_GPU_POST_RESET = 4,
};