Hi David,I explained this a couple of times. The request_firmware() is an abstract mechanism that can request a firmware file. The location of the firmware file is up to the userspace. The kernel requests a particular file and that is it. All namespacing has to be done by the firmware helper script (nowadays udev). That the current implementation of the firmware helper maps the filename 1:1 to a file under /lib/firmware/ just works, but doesn't have to work all the time. It is not the agreed contract between kernel and userspace. If you wanna do namespacing then you have to do it within the firmware helper script. For example the helper script could look for /lib/ firmware/<driver>/<filename> instead of /lib/firmware/<filename>. Regards Marcel --
