>From dcf5106cc476ff3d3a1d1df2f2d0e98b8bf60c9c Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Sun, 9 Jun 2013 16:09:20 +0200 Subject: [PATCH] manager: require whitelist for devices in the 'pnp' subsystem --- src/mm-manager.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mm-manager.c b/src/mm-manager.c index 69134e1..7103a00 100644 --- a/src/mm-manager.c +++ b/src/mm-manager.c @@ -285,10 +285,11 @@ device_added (MMManager *manager, goto out; } - /* If the physdev is a 'platform' device that's not whitelisted, ignore it */ + /* If the physdev is a 'platform' or 'pnp' device that's not whitelisted, ignore it */ physdev_subsys = g_udev_device_get_subsystem (physdev); if ( physdev_subsys - && !strcmp (physdev_subsys, "platform") + && ( g_str_equal (physdev_subsys, "platform") + || g_str_equal (physdev_subsys, "pnp")) && !g_udev_device_get_property_as_boolean (physdev, "ID_MM_PLATFORM_DRIVER_PROBE")) { mm_dbg ("(%s/%s): port's parent platform driver is not whitelisted", subsys, name); goto out; -- 1.8.2.1