#ifndef _UAPI_LINUX_WAIT_H #define _UAPI_LINUX_WAIT_H #define WNOHANG 0x00000001 #define WUNTRACED 0x00000002 #define WSTOPPED WUNTRACED #define WEXITED 0x00000004 #define WCONTINUED 0x00000008 #define WNOWAIT 0x01000000 /* Don't reap, just poll status. */ #define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads in this group */ #define __WALL 0x40000000 /* Wait on all children, regardless of type */ #define __WCLONE 0x80000000 /* Wait only on non-SIGCHLD children */ /* First argument to waitid: */ #define P_ALL 0 #define P_PID 1 #define P_PGID 2 #endif /* _UAPI_LINUX_WAIT_H */ a> index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
cf8c04c595d738d82d02ae2755b902a51571'>myri10ge: update driver version
AgeCommit message (Expand)Author
2020-11-02drm/amdgpu/dce: improve code indentation and alignmentDeepak R Varma
2020-10-26drm/amdgpu: Discard unnecessary breaksZhang Qilong
2020-08-24drm/amdgpu: Get DRM dev from adev by inline-fLuben Tuikov
2020-08-24drm/amdgpu: drm_device to amdgpu_device by inline-f (v2)Luben Tuikov
2020-06-24Merge tag 'drm-misc-next-2020-06-19' of git://anongit.freedesktop.org/drm/drm...Dave Airlie
2020-05-19drm/amd: remove _unlocked suffix in drm_gem_object_put_unlockedEmil Velikov
2020-04-09drm/amdgpu: replace indirect mmio access in non-dc code pathHawking Zhang
2020-02-13drm/amdgpu: Convert to CRTC VBLANK callbacksThomas Zimmermann
2020-02-13drm/amdgpu: Convert to struct drm_crtc_helper_funcs.get_scanout_position()Thomas Zimmermann
2019-10-03drm/amdgpu: Iterate through DRM connectors correctlyLyude Paul
Brice Goglin
2008-05-22make myri10ge_get_firmware_capabilities() staticAdrian Bunk
2008-05-13myri10ge: fix the number of interrupt slotsBrice Goglin
2008-05-13myri10ge: cleanup retrieving of firmware capabilitiesBrice Goglin
2008-05-13myri10ge: move data structures into a single sliceBrice Goglin
2008-05-13myri10ge: fix potential infinite loop in enable_ecrcBrice Goglin
2008-05-13myri10ge: trivial formatting fixBrice Goglin
2008-05-13myri10ge: add barrier in myri10ge_send_cmdBrice Goglin
2008-05-13myri10ge: report FIBER in ethtool for XFP based NICBrice Goglin
2008-05-13myri10ge: properly align scratch buffersBrice Goglin
2008-05-13myri10ge: increase and fix handoff timeoutBrice Goglin
2008-05-13myri10ge: fix module parameter descriptionsBrice Goglin
2008-04-29Remove duplicated unlikely() in IS_ERR()Hirofumi Nakagawa
2008-01-28annotate myri10geAl Viro
2008-01-28netdev: use ARRAY_SIZE() instead of sizeof(array) / ETH_GSTRING_LENAlejandro Martinez Ruiz