On Wednesday, September 30, 2020 8:15 AM, Jan Beulich <jbeul...@suse.com> wrote: > On 30.09.2020 14:00, Trammell Hudson wrote: > > This patch wraps the EFI OutputString() method so that they can be > > called with const arguments. The OutputString method does not modify > > its argument, although the prototype is missing const, so it is necssary > > to cast away the const when calling it. > > It also updates callers of PrintStr/PrintErr to remove unneeded un-const > > casts. > > Signed-off-by: Trammell Hudson hud...@trmm.net > > Reviewed-by: Jan Beulich jbeul...@suse.com > > This one got committed earlier today, sadly ...
Ah, I had missed it when I rebased onto upstream/master, instead of upstream/staging. > [...] > > @@ -540,7 +547,7 @@ static char * __init split_string(char *s) > > return NULL; > > } > > -static void __init handle_file_info(CHAR16 *name, > > +static void __init handle_file_info(const CHAR16 *name, > > const struct file *file, const char *options) > > { > > if ( file == &cfg ) > > Obviously I had to drop this hunk, which should now be folded > into patch 2. (If no other need for a v9 arises, I'll try to > remember to do so while committing that one.) I've squashed them in my tree in case there is a v9. Hopefully it doesn't come to that... -- Trammell