1. 23 Mar, 2018 4 commits
  2. 21 Mar, 2018 1 commit
    • Michał Kępień's avatar
      platform/x86: fujitsu-laptop: Revert UNSUPPORTED_CMD back to an int · 502ab004
      Michał Kępień authored
      UNSUPPORTED_CMD was previously 0x80000000 (int), but commit 819cddae
      ("platform/x86: fujitsu-laptop: Clean up constants") changed it into an
      unsigned long due to BIT() being used to define it.  As call_fext_func()
      returns an int, 0x80000000 would get type promoted when compared to an
      unsigned long, which on a 64-bit system would cause it to become
      0xffffffff80000000 due to sign extension.  This causes one logical
      condition in fujitsu-laptop to always be true and another one to always
      be false on 64-bit systems.  Fix this by reverting UNSUPPORTED_CMD back
      to an int.
      
      This patch fixes the following smatch warnings:
      
      drivers/platform/x86/fujitsu-laptop.c:763 acpi_fujitsu_laptop_leds_register() warn: always true condition '(call_fext_func(device, ((1 << (12)) | (1 << (0))), 2, (1 << (16)), 0) != (1 << (31))) => (s32min-s32max != 2147483648)'
      drivers/platform/x86/fujitsu-laptop.c:816 acpi_fujitsu_laptop_add() warn: impossible condition '(priv->flags_supported == (1 << (31))) => (0-2147483647,18446744071562067968-u64max == 2147483648)'
      
      Fixes: 819cddae ("platform/x86: fujitsu-laptop: Clean up constants")
      Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
      Signed-off-by: default avatarMichał Kępień <kernel@kempniu.pl>
      Reviewed-by: default avatarJonathan Woithe <jwoithe@just42.net>
      Signed-off-by: default avatarDarren Hart (VMware) <dvhart@infradead.org>
      502ab004
  3. 14 Mar, 2018 1 commit
    • Darren Hart (VMware)'s avatar
      platform/x86: Fix dell driver init order · 7129707e
      Darren Hart (VMware) authored
      Update the initcall ordering to satisfy the following dependency
      ordering:
      
      1. DCDBAS, ACPI_WMI
      2. DELL_SMBIOS, DELL_RBTN
      3. DELL_LAPTOP, DELL_WMI
      
      By assigning them to the following initcall levels:
      
      subsys_initcall: DCDBAS, ACPI_WMI
      module_init: DELL_SMBIOS, DELL_RBTN
      late_initcall: DELL_LAPTOP, DELL_WMI
      
      Cc: Dominik Brodowski <linux@dominikbrodowski.net>
      Cc: Mario.Limonciello@dell.com
      Signed-off-by: default avatarDarren Hart (VMware) <dvhart@infradead.org>
      7129707e
  4. 12 Mar, 2018 1 commit
    • Darren Hart's avatar
      platform/x86: dell-smbios: Resolve dependency error on ACPI_WMI · 4716007c
      Darren Hart authored
      Similarly to DCDBAS for DELL_SMBIOS_SMM, if DELL_SMBIOS_WMI is enabled,
      DELL_SMBIOS becomes dependent on ACPI_WMI. Update the depends lines to
      prevent a configuration where DELL_SMBIOS=y and either backend
      dependency =m. Update the comment accordingly.
      
      Cc: Mario Limonciello <mario.limonciello@dell.com>
      Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
      Cc: Dominik Brodowski <linux@dominikbrodowski.net>
      Signed-off-by: default avatarDarren Hart (VMware) <dvhart@infradead.org>
      4716007c
  5. 08 Mar, 2018 1 commit
    • Darren Hart (VMware)'s avatar
      platform/x86: dell-smbios: Resolve dependency error on DCDBAS · cc69c88f
      Darren Hart (VMware) authored
      When the DELL_SMBIOS_SMM backend is enabled, the DELL_SMBIOS symbol
      depends on DELL_DCDBAS, and we must avoid the situation where
      DELL_SMBIOS=y and DCDBAS=m.
      
      Adding the conditional dependency to DELL_SMBIOS such as:
      
      depends !DELL_SMBIOS_SMM || (DCDBAS || DCDBAS=n)
      
      results in the Kconfig tooling complaining about a circular dependency,
      although it appears to work in practice.
      
      Avoid the errors by simplifying the dependency and forcing DELL_SMBIOS
      to be <= DCDBAS if DCDBAS is enabled (thanks to Greg KH for the
      suggestion).
      
      Cc: Mario.Limonciello@dell.com
      Signed-off-by: default avatarDarren Hart (VMware) <dvhart@infradead.org>
      cc69c88f
  6. 05 Mar, 2018 1 commit
    • Darren Hart (VMware)'s avatar
      platform/x86: Allow for SMBIOS backend defaults · c715e434
      Darren Hart (VMware) authored
      Avoid accidental configurations by setting default y for DELL_SMBIOS
      backends. Avoid this impacting the default build size, by making them
      dependent on DELL_SMBIOS, so they only appear when DELL_SMBIOS is
      manually selected, or by DELL_LAPTOP or DELL_WMI.
      
      While DELL_SMBIOS does have a prompt, it does not have any dependencies.
      Keeping DELL_SMBIOS visible, despite being "select"ed by DELL_LAPTOP and
      DELL_WMI, is a deliberate choice to provide context for the WMI and SMM
      backends, which would otherwise appear to float without context within
      the menu.
      Signed-off-by: default avatarDarren Hart (VMware) <dvhart@infradead.org>
      c715e434
  7. 03 Mar, 2018 3 commits
  8. 01 Mar, 2018 1 commit
  9. 28 Feb, 2018 2 commits
  10. 24 Feb, 2018 8 commits
  11. 23 Feb, 2018 9 commits
  12. 19 Feb, 2018 1 commit
  13. 15 Feb, 2018 6 commits
  14. 11 Feb, 2018 1 commit