1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 3 /* Copyright (C) 2025 Derek J. Clark <derekjohn.clark@gmail.com> */ 4 5 #ifndef _LENOVO_WMI_OTHER_H_ 6 #define _LENOVO_WMI_OTHER_H_ 7 8 struct device; 9 struct notifier_block; 10 11 int lwmi_om_register_notifier(struct notifier_block *nb); 12 int lwmi_om_unregister_notifier(struct notifier_block *nb); 13 int devm_lwmi_om_register_notifier(struct device *dev, 14 struct notifier_block *nb); 15 16 #endif /* !_LENOVO_WMI_OTHER_H_ */ 17