diff options
| author | Eric Anholt <eric@anholt.net> | 2007-07-19 17:00:17 -0700 | 
|---|---|---|
| committer | Eric Anholt <eric@anholt.net> | 2007-07-20 12:53:52 -0700 | 
| commit | e39286eb5eab8846a228863abf8f1b8b07a9e29d (patch) | |
| tree | 7f0f599e514917546e195f2ec19eb869deb141c1 /shared-core/nv04_instmem.c | |
| parent | 5dc9fd96d7bf48003db832f145ad8acb4bcb73b4 (diff) | |
Remove DRM_ERR OS macro.
This was used to make all ioctl handlers return -errno on linux and errno on
*BSD.  Instead, just return -errno in shared code, and flip sign on return from
shared code to *BSD code.
Diffstat (limited to 'shared-core/nv04_instmem.c')
| -rw-r--r-- | shared-core/nv04_instmem.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-core/nv04_instmem.c b/shared-core/nv04_instmem.c index 7cf06269..35b20abd 100644 --- a/shared-core/nv04_instmem.c +++ b/shared-core/nv04_instmem.c @@ -126,7 +126,7 @@ int  nv04_instmem_populate(struct drm_device *dev, struct nouveau_gpuobj *gpuobj, uint32_t *sz)  {  	if (gpuobj->im_backing) -		return DRM_ERR(EINVAL); +		return -EINVAL;  	return 0;  } @@ -148,7 +148,7 @@ int  nv04_instmem_bind(struct drm_device *dev, struct nouveau_gpuobj *gpuobj)  {  	if (!gpuobj->im_pramin || gpuobj->im_bound) -		return DRM_ERR(EINVAL); +		return -EINVAL;  	gpuobj->im_bound = 1;  	return 0; @@ -158,7 +158,7 @@ int  nv04_instmem_unbind(struct drm_device *dev, struct nouveau_gpuobj *gpuobj)  {  	if (gpuobj->im_bound == 0) -		return DRM_ERR(EINVAL); +		return -EINVAL;  	gpuobj->im_bound = 0;  	return 0;  | 
