On Wed, Dec 4, 2024 at 7:06 AM Mark Brown <broonie@xxxxxxxxxx> wrote: > > On Tue, Dec 03, 2024 at 07:20:05PM +0000, Mark Brown wrote: > > On Mon, Dec 02, 2024 at 11:33:58AM -0800, Linus Torvalds wrote: > > > > If we have these kinds of big scripted things, right after the merge > > > window tends to be the best time to do them. The conflict potential of > > > leaving it hanging in linux-next can be somewhat annoying. They may be > > > fairly unlikely, and easy to resolve individually, but it's one of > > > those "one is trivial to deal with, but even just a handful is > > > annoying". > > > > So I'll run your script and take your commit message, and we'll have > > > this part over and done with. > > > I *think* this is interacting in a fun way with at least the IIO > > subsystem in -next (Linus' tree is fine, I didn't do too much > > investigation as I'd quite like the -next build to finish some time > > today): > > Yes, this is breaking ASoC and possibly other things as well. I guess > any tree adding a new use of these macros needs to merge mainline to > avoid a mess here. In this development cycle, I think subsystems should queue up patches on top of -rc2 instead of -rc1. Meanwhile, linux-next needs to carry the following fixup. diff --git a/drivers/iio/imu/inv_icm42600/inv_icm42600_core.c b/drivers/iio/imu/inv_icm42600/inv_icm42600_core.c index 550cc53e7559..f415f300afb6 100644 --- a/drivers/iio/imu/inv_icm42600/inv_icm42600_core.c +++ b/drivers/iio/imu/inv_icm42600/inv_icm42600_core.c @@ -908,4 +908,4 @@ EXPORT_NS_GPL_DEV_PM_OPS(inv_icm42600_pm_ops, IIO_ICM42600) = { MODULE_AUTHOR("InvenSense, Inc."); MODULE_DESCRIPTION("InvenSense ICM-426xx device driver"); MODULE_LICENSE("GPL"); -MODULE_IMPORT_NS(IIO_INV_SENSORS_TIMESTAMP); +MODULE_IMPORT_NS("IIO_INV_SENSORS_TIMESTAMP"); -- Best Regards Masahiro Yamada