Hi, On 2/4/21 4:05 PM, Andy Shevchenko wrote: > Neither original structure nor platform_data is declared with const. > Drop mistakenly added const when assing platform_data. > > Fixes: a507e5d90f3d ("platform/x86: intel_scu_wdt: Get rid of custom x86 model comparison") > Reported-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Thank you for your patch, I've applied this patch to my review-hans branch: https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=review-hans Note it will show up in my review-hans branch once I've pushed my local branch there, which might take a while. Once I've run some tests on this branch the patches there will be added to the platform-drivers-x86/for-next branch and eventually will be included in the pdx86 pull-request to Linus for the next merge-window. Regards, Hans > --- > drivers/platform/x86/intel_scu_wdt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/platform/x86/intel_scu_wdt.c b/drivers/platform/x86/intel_scu_wdt.c > index 85ee85ca2215..c2479777a1d6 100644 > --- a/drivers/platform/x86/intel_scu_wdt.c > +++ b/drivers/platform/x86/intel_scu_wdt.c > @@ -63,7 +63,7 @@ static int __init register_mid_wdt(void) > if (!id) > return -ENODEV; > > - wdt_dev.dev.platform_data = (const struct intel_mid_wdt_pdata *)id->driver_data; > + wdt_dev.dev.platform_data = (struct intel_mid_wdt_pdata *)id->driver_data; > return platform_device_register(&wdt_dev); > } > arch_initcall(register_mid_wdt); >