| .. | .. |
|---|
| 31 | 31 | * @protected_mode_disable: Callback to disable protected mode for device |
|---|
| 32 | 32 | */ |
|---|
| 33 | 33 | struct protected_mode_ops { |
|---|
| 34 | | - /** |
|---|
| 34 | + /* |
|---|
| 35 | 35 | * protected_mode_enable() - Enable protected mode on device |
|---|
| 36 | 36 | * @dev: The struct device |
|---|
| 37 | 37 | * |
|---|
| .. | .. |
|---|
| 40 | 40 | int (*protected_mode_enable)( |
|---|
| 41 | 41 | struct protected_mode_device *protected_dev); |
|---|
| 42 | 42 | |
|---|
| 43 | | - /** |
|---|
| 43 | + /* |
|---|
| 44 | 44 | * protected_mode_disable() - Disable protected mode on device, and |
|---|
| 45 | 45 | * reset device |
|---|
| 46 | 46 | * @dev: The struct device |
|---|
| .. | .. |
|---|
| 54 | 54 | /** |
|---|
| 55 | 55 | * struct protected_mode_device - Device structure for protected mode devices |
|---|
| 56 | 56 | * |
|---|
| 57 | | - * @ops - Callbacks associated with this device |
|---|
| 58 | | - * @data - Pointer to device private data |
|---|
| 57 | + * @ops: Callbacks associated with this device |
|---|
| 58 | + * @data: Pointer to device private data |
|---|
| 59 | 59 | * |
|---|
| 60 | 60 | * This structure should be registered with the platform device using |
|---|
| 61 | 61 | * platform_set_drvdata(). |
|---|