@@ -45,9 +63,16 @@ pub fn make_config_hook( let ret = quote! { #[derive(Cfgv, Debug)] struct #name { pub(crate) struct #name { #(#f_code),* } impl #name { pub(crate) fn overlay_on(&self, hook: &ManifestHook) -> ManifestHook { #(#overlay_code)* ManifestHook { #...
> remove unused variable "overlay_lock" that introduced in > a75774679f28 ("OF: DT-Overlay configfs interface (v8)") > to fix below compile error: > > | drivers/of/configfs.c:46:21: error: 'overlay_lock' defined but not used > [-Werror=unused-variable] > | 46 | static DEFINE...