@@ -47,7 +47,7 @@ struct drm_ctx_list {
47
47
/** \name Context bitmap support */
48
48
/*@{*/
49
49
50
- /**
50
+ /*
51
51
* Free a handle from the context bitmap.
52
52
*
53
53
* \param dev DRM device.
@@ -68,7 +68,7 @@ void drm_legacy_ctxbitmap_free(struct drm_device * dev, int ctx_handle)
68
68
mutex_unlock (& dev -> struct_mutex );
69
69
}
70
70
71
- /**
71
+ /*
72
72
* Context bitmap allocation.
73
73
*
74
74
* \param dev DRM device.
@@ -88,7 +88,7 @@ static int drm_legacy_ctxbitmap_next(struct drm_device * dev)
88
88
return ret ;
89
89
}
90
90
91
- /**
91
+ /*
92
92
* Context bitmap initialization.
93
93
*
94
94
* \param dev DRM device.
@@ -104,7 +104,7 @@ void drm_legacy_ctxbitmap_init(struct drm_device * dev)
104
104
idr_init (& dev -> ctx_idr );
105
105
}
106
106
107
- /**
107
+ /*
108
108
* Context bitmap cleanup.
109
109
*
110
110
* \param dev DRM device.
@@ -163,7 +163,7 @@ void drm_legacy_ctxbitmap_flush(struct drm_device *dev, struct drm_file *file)
163
163
/** \name Per Context SAREA Support */
164
164
/*@{*/
165
165
166
- /**
166
+ /*
167
167
* Get per-context SAREA.
168
168
*
169
169
* \param inode device inode.
@@ -211,7 +211,7 @@ int drm_legacy_getsareactx(struct drm_device *dev, void *data,
211
211
return 0 ;
212
212
}
213
213
214
- /**
214
+ /*
215
215
* Set per-context SAREA.
216
216
*
217
217
* \param inode device inode.
@@ -263,7 +263,7 @@ int drm_legacy_setsareactx(struct drm_device *dev, void *data,
263
263
/** \name The actual DRM context handling routines */
264
264
/*@{*/
265
265
266
- /**
266
+ /*
267
267
* Switch context.
268
268
*
269
269
* \param dev DRM device.
@@ -290,7 +290,7 @@ static int drm_context_switch(struct drm_device * dev, int old, int new)
290
290
return 0 ;
291
291
}
292
292
293
- /**
293
+ /*
294
294
* Complete context switch.
295
295
*
296
296
* \param dev DRM device.
@@ -318,7 +318,7 @@ static int drm_context_switch_complete(struct drm_device *dev,
318
318
return 0 ;
319
319
}
320
320
321
- /**
321
+ /*
322
322
* Reserve contexts.
323
323
*
324
324
* \param inode device inode.
@@ -351,7 +351,7 @@ int drm_legacy_resctx(struct drm_device *dev, void *data,
351
351
return 0 ;
352
352
}
353
353
354
- /**
354
+ /*
355
355
* Add context.
356
356
*
357
357
* \param inode device inode.
@@ -404,7 +404,7 @@ int drm_legacy_addctx(struct drm_device *dev, void *data,
404
404
return 0 ;
405
405
}
406
406
407
- /**
407
+ /*
408
408
* Get context.
409
409
*
410
410
* \param inode device inode.
@@ -428,7 +428,7 @@ int drm_legacy_getctx(struct drm_device *dev, void *data,
428
428
return 0 ;
429
429
}
430
430
431
- /**
431
+ /*
432
432
* Switch context.
433
433
*
434
434
* \param inode device inode.
@@ -452,7 +452,7 @@ int drm_legacy_switchctx(struct drm_device *dev, void *data,
452
452
return drm_context_switch (dev , dev -> last_context , ctx -> handle );
453
453
}
454
454
455
- /**
455
+ /*
456
456
* New context.
457
457
*
458
458
* \param inode device inode.
@@ -478,7 +478,7 @@ int drm_legacy_newctx(struct drm_device *dev, void *data,
478
478
return 0 ;
479
479
}
480
480
481
- /**
481
+ /*
482
482
* Remove context.
483
483
*
484
484
* \param inode device inode.
0 commit comments