Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

platform/x86: intel_atomisp2_pm: Spelling fixes

Fix ambiguous spelling in the comments.

While here, update two lines to fit one.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

+8 -9
+3 -3
drivers/platform/x86/Kconfig
··· 1299 1299 depends on PCI && IOSF_MBI && PM 1300 1300 help 1301 1301 Power-management driver for Intel's Image Signal Processor found on 1302 - Bay and Cherry Trail devices. This dummy driver's sole purpose is to 1303 - turn the ISP off (put it in D3) to save power and to allow entering 1304 - of S0ix modes. 1302 + Bay Trail and Cherry Trail devices. This dummy driver's sole purpose 1303 + is to turn the ISP off (put it in D3) to save power and to allow 1304 + entering of S0ix modes. 1305 1305 1306 1306 To compile this driver as a module, choose M here: the module 1307 1307 will be called intel_atomisp2_pm.
+5 -6
drivers/platform/x86/intel_atomisp2_pm.c
··· 1 1 // SPDX-License-Identifier: GPL-2.0 2 2 /* 3 - * Dummy driver for Intel's Image Signal Processor found on Bay and Cherry 4 - * Trail devices. The sole purpose of this driver is to allow the ISP to 5 - * be put in D3. 3 + * Dummy driver for Intel's Image Signal Processor found on Bay Trail 4 + * and Cherry Trail devices. The sole purpose of this driver is to allow 5 + * the ISP to be put in D3. 6 6 * 7 7 * Copyright (C) 2018 Hans de Goede <hdegoede@redhat.com> 8 8 * ··· 36 36 static int isp_set_power(struct pci_dev *dev, bool enable) 37 37 { 38 38 unsigned long timeout; 39 - u32 val = enable ? ISPSSPM0_IUNIT_POWER_ON : 40 - ISPSSPM0_IUNIT_POWER_OFF; 39 + u32 val = enable ? ISPSSPM0_IUNIT_POWER_ON : ISPSSPM0_IUNIT_POWER_OFF; 41 40 42 41 /* Write to ISPSSPM0 bit[1:0] to power on/off the IUNIT */ 43 42 iosf_mbi_modify(BT_MBI_UNIT_PMC, MBI_REG_READ, ISPSSPM0, ··· 44 45 45 46 /* 46 47 * There should be no IUNIT access while power-down is 47 - * in progress HW sighting: 4567865 48 + * in progress. HW sighting: 4567865. 48 49 * Wait up to 50 ms for the IUNIT to shut down. 49 50 * And we do the same for power on. 50 51 */