Lines Matching +full:everything +full:- +full:else
27 now (for oldisa-only drivers) become::
52 unsigned int id`` pair directly -- with the device creation completely
59 ALSA would want to keep the old non-load behaviour, it could stick all
61 everything was found to be present and accounted for. If it wanted the
64 do everything in .probe() as before.
70 values have been passed in) and .probe() for everything else. This is
85 if (dev->platform_data == isa_driver) {
86 if (!isa_driver->match ||
87 isa_driver->match(dev, to_isa_dev(dev)->id))
89 dev->platform_data = NULL;
97 do that with everything being internal, so isa_register_driver() abuses
98 dev->platform_data as a isa_driver pointer which we can then check here.
106 If it did **not** match, dev->platform_data is reset to indicate this to
110 everything is backed out again and the error, or -ENODEV, is returned.