hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
kernel/include/linux/protected_mode_switcher.h
....@@ -31,7 +31,7 @@
3131 * @protected_mode_disable: Callback to disable protected mode for device
3232 */
3333 struct protected_mode_ops {
34
- /**
34
+ /*
3535 * protected_mode_enable() - Enable protected mode on device
3636 * @dev: The struct device
3737 *
....@@ -40,7 +40,7 @@
4040 int (*protected_mode_enable)(
4141 struct protected_mode_device *protected_dev);
4242
43
- /**
43
+ /*
4444 * protected_mode_disable() - Disable protected mode on device, and
4545 * reset device
4646 * @dev: The struct device
....@@ -54,8 +54,8 @@
5454 /**
5555 * struct protected_mode_device - Device structure for protected mode devices
5656 *
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
5959 *
6060 * This structure should be registered with the platform device using
6161 * platform_set_drvdata().