[PATCH v2] watchdog: add new parameter to start the watchdog on module insertion

2021-04-13 Thread Flavio Suligoi
used when the watchdog driver is build as "built-in". This parameter involves the "core" section of the watchdog driver; in this way it is common for all the watchdog hardware implementations. Signed-off-by: Flavio Suligoi --- v2: - check WDOG_HW_RUNNING before starting watchdog;

RE: [PATCH v1] watchdog: add new parameter to start the watchdog on module insertion

2021-04-13 Thread Flavio Suligoi
> >>> in this way it is common for all the watchdog hardware implementations. > >>> > >>> Note: to use only for watchdog drivers which doesn't support this > >>> parameter by itself. > >>> > >>> Signed-off-by: Flav

RE: [PATCH v1] watchdog: add new parameter to start the watchdog on module insertion

2021-04-12 Thread Flavio Suligoi
Hi Guenter, ... > On 4/9/21 2:34 AM, Flavio Suligoi wrote: > > The new parameter "start_enabled" starts the watchdog at the same time > > of the module insertion. > > This feature is very useful in embedded systems, to avoid cases where > > the s

[PATCH v1] watchdog: add new parameter to start the watchdog on module insertion

2021-04-09 Thread Flavio Suligoi
used when the watchdog driver is build as built-in. This parameter involves the "core" section of the watchdog driver; in this way it is common for all the watchdog hardware implementations. Note: to use only for watchdog drivers which doesn't support this parameter by itself. Signed-of

RE: [PATCH net-next v2 0/5] net: pch: fix and a few cleanups

2021-04-08 Thread Flavio Suligoi
local 192.168.200.159 port 32778 connected with 192.168.200.1 port 5001 [ ID] Interval Transfer Bandwidth [ 3] 0.0-10.0 sec 1.25 MBytes 1.05 Mbits/sec [ 3] Sent 893 datagrams ht-700 ~ # uname -a Linux ht-700 5.12.0-rc2-watchdog+ #12 SMP Thu Apr 8 11:08:49 CEST 2021 x86_64 x86_64

RE: [PATCH net-next v2 0/5] net: pch: fix and a few cleanups

2021-03-30 Thread Flavio Suligoi
to have a possibility for > > backporting. Patches 3 and 4 fix a minor warnings from Sparse while > > moving to a new APIs. Patch 5 is MODULE_VERSION() clean up. > > > > Tested on Intel Minnowboard (v1). > > Anything should I do here? it's ok for me > -- > With

RE: [PATCH v1 1/2] watchdog: add global watchdog kernel module parameters structure

2021-03-09 Thread Flavio Suligoi
> Hi, > Hi Randy, > On 3/8/21 3:21 AM, Flavio Suligoi wrote: > > Different watchdog modules frequently require the same type of > > parameters (for example: timeout, nowayout feature, start wdog on > > module insertion, etc.). ... > > +In this way, e

RE: [PATCH v1 0/2] Watchdog Core Global Parameters

2021-03-09 Thread Flavio Suligoi
l_parameters_init()*, in the same file. > > > > Global parameters use > > = > > > > Each watchdog driver, to check if one of the global parameters is > > enabled, can use the corresponding in-line function declared in > >

[PATCH v1 0/2] Watchdog Core Global Parameters

2021-03-08 Thread Flavio Suligoi
de_enabled() * watchdog_global_param_start_enabled() * watchdog_global_param_nowayout_enabled() Flavio Suligoi (2): watchdog: add global watchdog kernel module parameters structure watchdog: wdat: add start_enable global parameter Documentation/watchdog/index.rst | 1 +

[PATCH v1 2/2] watchdog: wdat: add start_enable global parameter

2021-03-08 Thread Flavio Suligoi
re managed by the watchdog_core itself. Signed-off-by: Flavio Suligoi --- drivers/watchdog/wdat_wdt.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/watchdog/wdat_wdt.c b/drivers/watchdog/wdat_wdt.c index cec7917790e5..7304a335227f 100644 --- a/drivers/watchdog/wdat_wdt.c +++ b/drivers/watchdog/

[PATCH v1 1/2] watchdog: add global watchdog kernel module parameters structure

2021-03-08 Thread Flavio Suligoi
adds the base structure to add the global parameters, starting with some common integer data (timeout, ioport, irq) and a bitwise "features" flag, where we can store some boolean features (verbose, test_mode, start_enabled, nowayout, etc.) Signed-off-by: Flavio Suligoi --- Documentat

[PATCH] docs: watchdog: fix obsolete include file reference in pcwd

2021-02-23 Thread Flavio Suligoi
The file linux/pcwd.h is not more present in the kernel sources. Its information is now moved into the file: include/uapi/linux/watchdog.h Signed-off-by: Flavio Suligoi --- Documentation/watchdog/pcwd-watchdog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

RE: R: [PATCH v1] watchdog: wdat: add param. to start wdog on module insertion

2021-02-22 Thread Flavio Suligoi
Hi Guenter > >>>const struct wdat_instruction *instr, u32 *value) { @@ -437,6 > >>> +443,8 @@ static int wdat_wdt_probe(struct platform_device > >> *pdev) > >>> } > >>> > >>> wdat_wdt_boot_status(wdat); > >>> + if (start_enabled) > >>> + wdat_wdt_start(>wdd); > >> > >> No

R: [PATCH v1] watchdog: wdat: add param. to start wdog on module insertion

2021-02-19 Thread Flavio Suligoi
Hi Mika, > > const struct wdat_instruction *instr, u32 *value) > > { > > @@ -437,6 +443,8 @@ static int wdat_wdt_probe(struct platform_device > *pdev) > > } > > > > wdat_wdt_boot_status(wdat); > > + if (start_enabled) > > + wdat_wdt_start(>wdd); > > No objections to

[PATCH v1] watchdog: wdat: add param. to start wdog on module insertion

2021-02-18 Thread Flavio Suligoi
te setting of the BIOS setup). In other cases, when this BIOS feature is not present, the possibility to start the watchdog immediately after the module loading can be very useful. Signed-off-by: Flavio Suligoi --- drivers/watchdog/wdat_wdt.c | 8 1 file changed, 8 insertions(+) diff --git

[PATCH] watchdog: wdat_wdg: fix typo

2021-02-16 Thread Flavio Suligoi
Fix the following typo: "recommeded" --> "recommended" "firmare" --> "firmware" Signed-off-by: Flavio Suligoi --- drivers/watchdog/wdat_wdt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/watchdog/wdat_wdt.c b/

[PATCH v1] mtd: spi-nor: core: fix/remove references to spi-nor.c

2021-01-26 Thread Flavio Suligoi
The old file: drivers/mtd/spi-nor/spi-nor.c is not more present and now some of its code is contained in: drivers/mtd/spi-nor/core.c This patch fix/remove the references to the old spi-nor.c file. Signed-off-by: Flavio Suligoi --- Documentation/driver-api/mtd/spi-nor.rst | 2 +- drivers/mtd

[PATCH v1] mtd: spi-nor: add ACPI support for non-JEDEC SPI-NOR

2021-01-26 Thread Flavio Suligoi
pi_nor_of_table structure. With this change, all the SPI NOR devices (JEDEC and non-JEDEC) can be detected by the kernel (and the above example of ACPI table finally works). Signed-off-by: Flavio Suligoi --- drivers/mtd/spi-nor/core.c | 13 + 1 file changed, 13 insertions(+) diff --git a/d

[PATCH v1] Documentation: ACPI: add new rule for gpio-line-names

2021-01-08 Thread Flavio Suligoi
The gpio-line-names lists must respect some rules. This patch adds a new rule in documentation, to avoid the use of duplicate names in the same gpiochip. Signed-off-by: Flavio Suligoi --- Documentation/firmware-guide/acpi/gpio-properties.rst | 1 + 1 file changed, 1 insertion(+) diff --git

R: R: R: R: [PATCH v1] serial: 8250_fintek: Print Fintek chip name

2020-12-16 Thread Flavio Suligoi
Hi Peter, > >>> > >>> dmesg| grep ttyS > >> > >> But as they work the same, why does it matter? > > > > Yes you are right, by the user point of view, they are the same. > > > >> > >> Userspace should not care here. Isn't there some other id you can > >> read/query for a hardware database tool to

R: R: R: [PATCH v1] serial: 8250_fintek: Print Fintek chip name

2020-12-15 Thread Flavio Suligoi
Hi Greg, > > > Fintek F81216AD > > > > 00:02: ttyS3 at I/O 0x2e8 (irq = 11, base_baud = 115200) is a 16550A > - > > > Fintek F81216AD > > > > > > > > where the "extra_name", if not empty, is printed > > > > at the end of the line. > > > > For practical space reasons, the "extra_name" length > > >

R: R: [PATCH v1] serial: 8250_fintek: Print Fintek chip name

2020-12-15 Thread Flavio Suligoi
Hi Greg, > > > > + chip_name = "F81216H"; > > > > + break; > > > > case CHIP_ID_F81216: > > > > + chip_name = "F81216"; > > > > break; > > > > default: > > > > return -ENODEV; > > > > } > > > > > >

R: [PATCH v1] serial: 8250_fintek: Print Fintek chip name

2020-12-15 Thread Flavio Suligoi
Hi Greg, > > > > switch (chip) { > > case CHIP_ID_F81865: > > + chip_name = "F81865"; > > + break; > > case CHIP_ID_F81866: > > + chip_name = "F81866"; > > + break; > > case CHIP_ID_F81966: > > + chip_name = "F81966"; > > +

[PATCH v1] serial: 8250_fintek: Print Fintek chip name

2020-12-14 Thread Flavio Suligoi
-by: Flavio Suligoi --- drivers/tty/serial/8250/8250_fintek.c | 25 +++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/drivers/tty/serial/8250/8250_fintek.c b/drivers/tty/serial/8250/8250_fintek.c index 31c9e83ea3cb..ef2303cb5176 100644 --- a/drivers/tty/serial/8250

RE: [PATCH v1] docs/vm: hwpoison: fix spelling mistakes

2020-11-26 Thread Flavio Suligoi
Hi Jon, [PATCH v1] docs/vm: hwpoison: fix spelling mistakes > > On Wed, 25 Nov 2020 17:52:22 +0100 > Flavio Suligoi wrote: > > > Actions: > > > > - fix spelling mistake > > - reduce some double spaces to a single one > > Please don't make

[PATCH v1] docs/vm: hwpoison: fix spelling mistakes

2020-11-25 Thread Flavio Suligoi
Actions: - fix spelling mistake - reduce some double spaces to a single one - substitute spaces with tab Signed-off-by: Flavio Suligoi --- Documentation/vm/hwpoison.rst | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Documentation/vm/hwpoison.rst b

RE: [PATCH v2] docs: ACPI: enumeration: add PCI hierarchy representation

2020-11-20 Thread Flavio Suligoi
Hi Andy, > > This patch, with a practical example, show how to do this. > > Good enough, we can amend style and formatting later on. > Reviewed-by: Andy Shevchenko > Thanks! > > Signed-off-by: Flavio Suligoi > > --- > > (Here you usually put a chang

[PATCH v2] docs: ACPI: enumeration: add PCI hierarchy representation

2020-11-20 Thread Flavio Suligoi
be added to the pins of a GPIO expander on the PCI bus. In order to find the ACPI name of a PCI device, it's necessary to disassemble the BIOS ACPI tables (in particular the DSDT) and also to analyze the PCI bus topology of the board. This patch, with a practical example, show how to do this. Signed-of

RE: [PATCH v1] docs: ACPI: enumeration: add PCI hierarchy representation

2020-11-19 Thread Flavio Suligoi
Hi Andy! > On Thu, Nov 19, 2020 at 11:12:33AM +0100, Flavio Suligoi wrote: > > Thank you very much for nice piece of documentation! > My comments below. Thanks for your suggestions! I'll use them in the next version of the patch! > > +particular the DSDT (see also [2])::

[PATCH v1] docs: ACPI: dsd: enable hyperlink in final references

2020-11-19 Thread Flavio Suligoi
For inline web links, no special markup are needed. Signed-off-by: Flavio Suligoi --- Documentation/firmware-guide/acpi/dsd/leds.rst | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/firmware-guide/acpi/dsd/leds.rst b/Documentation/firmware-guide/acpi

[PATCH v1] docs: ACPI: enumeration: add PCI hierarchy representation

2020-11-19 Thread Flavio Suligoi
be added to the pins of a GPIO expander on the PCI bus. In order to find the ACPI name of a PCI device , it's necessary to disassemble the BIOS ACPI tables (in particular the DSDT) and also to analyze the PCI bus topology of the board. This patch, with a practical example, show how to do this. Signed-of

RE: [PATCH v4] Documentation: ACPI: explain how to use gpio-line-names

2020-11-12 Thread Flavio Suligoi
HI Andy, > On Thu, Nov 12, 2020 at 02:15:45PM +0100, Flavio Suligoi wrote: > > The "gpio-line-names" declaration is not fully > > documented, so can be useful to add some important > > information and one more example. > > > > This commit also fixes a tr

[PATCH v4] Documentation: ACPI: explain how to use gpio-line-names

2020-11-12 Thread Flavio Suligoi
The "gpio-line-names" declaration is not fully documented, so can be useful to add some important information and one more example. This commit also fixes a trivial spelling mistake. Signed-off-by: Flavio Suligoi Reviewed-by: Andy Shevchenko Reviewed-by: Mika Westerberg --- v2: -

[PATCH v3] Documentation: ACPI: explain how to use gpio-line-names

2020-11-12 Thread Flavio Suligoi
The "gpio-line-names" declaration is not fully documented, so can be useful to add some important information and one more example. This commit also fixes a trivial spelling mistake. Signed-off-by: Flavio Suligoi Reviewed-by: Andy Shevchenko --- v2: - fix commit spelling mistakes

[PATCH v2] Documentation: ACPI: explain how to use gpio-line-names

2020-11-12 Thread Flavio Suligoi
The "gpio-line-names" declaration is not fully documented, so can be useful to add some important information and one more example. This commit also fixes a trivial spelling mistake. Signed-off-by: Flavio Suligoi --- v2: - fix commit spelling mistakes - add double back quotes to

RE: [PATCH v1] Documentation: ACPI: explain how to use gpio-line-names

2020-11-11 Thread Flavio Suligoi
> > > Since it's rest, I would expect gpio-line-names in above paragraphs to > > > be a term, something like > > > ``gpio-line-names`` (double back quotes on each side). Yes, I know > > > that there are other places which need to be amended, but I believe > > > it's out of scope of this patch. > >

RE: [PATCH v1] Documentation: ACPI: explain how to use gpio-line-names

2020-11-11 Thread Flavio Suligoi
Hi Andy, > > This commit also fix a trivial syntax error. > > fix -> fixes > syntax error -> spelling mistake ok > > -Example:: > > +The "gpio-line-names" declaration is a list of strings ("names"), which > > +describes each line/pin of a GPIO controller/expander. > > +This list, contained in

[PATCH v1] Documentation: ACPI: explain how to use gpio-line-names

2020-11-11 Thread Flavio Suligoi
The "gpio-line-names" declaration is not fully documented, so can be useful to add some important information and one more example. This commit also fix a trivial syntax error. Signed-off-by: Flavio Suligoi --- .../firmware-guide/acpi/gpio-properties.rst | 58 +

[PATCH] Documentation: ACPI: fix spelling mistakes

2020-11-10 Thread Flavio Suligoi
Signed-off-by: Flavio Suligoi --- Documentation/firmware-guide/acpi/acpi-lid.rst | 8 Documentation/firmware-guide/acpi/method-tracing.rst | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Documentation/firmware-guide/acpi/acpi-lid.rst b/Documentation

[PATCH] ARC: mm: fix spelling mistakes

2020-11-09 Thread Flavio Suligoi
Signed-off-by: Flavio Suligoi --- arch/arc/mm/tlb.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/arch/arc/mm/tlb.c b/arch/arc/mm/tlb.c index c340acd989a0..9bb3c24f3677 100644 --- a/arch/arc/mm/tlb.c +++ b/arch/arc/mm/tlb.c @@ -30,14 +30,14

RE: How to use an ACPI declared GPIO in a userspace ...

2020-10-02 Thread Flavio Suligoi
HI Andy, > > So, what about adding the following > > > > > > (Replace '...' with meaningful line names or drop for now, but in any > > case you need to provide as much names as lines of such GPIO > > controller) > > I have checked the code, so it allows you to define from 0 up to all > lines,

RE: How to use an ACPI declared GPIO in a userspace ...

2020-10-02 Thread Flavio Suligoi
Hi Andy, with my custom SSDT table: DefinitionBlock ("gpio_button.aml", "SSDT", 5, "ASEMsp", "GPIO_BTN", 1) { External (_SB_.GPO1, DeviceObj) Scope (\_SB.GPO1) { Device (BTNS) { Name (_HID, "ASEM0005") //

RE: How to use an ACPI declared GPIO in a userspace ...

2020-10-02 Thread Flavio Suligoi
Hi Andy, sorry for the delay! > > > My SSDT table is: > > > > See the difference? I can't help here. This is the DSDT table related to the GPIO controller of my board: Device (GPO1) { Name (_ADR, Zero) // _ADR: Address Name (_HID, "INT3452") // _HID:

RE: How to use an ACPI declared GPIO in a userspace ...

2020-09-30 Thread Flavio Suligoi
Hi Andy, > I guess you simply didn't get. The "gpio-line-names" property of GPIO > *controller* (provider!) and you are trying to do something with the > *consumer* > if I got it right. > > And of course GPIO line, which has name, has no difference in use from > another > w/o name assigned. You

RE: How to use an ACPI declared GPIO in a userspace ...

2020-09-30 Thread Flavio Suligoi
Hi Andy, > > > > > I was wondering if there is a generic GPIO driver that I can use > Maybe I was not so clear, but as Bart mentioned the least you can do > is simply define line name via "gpio-line-names" property. The problem > here is when and how you would like to have them incorporated. I

RE: How to use an ACPI declared GPIO in a userspace ...

2020-09-29 Thread Flavio Suligoi
Hi Andy and Bartosz, > > > > > > I need to expose to the userspace a GPIO, physically connected to a > board > > > push-button. This GPIO must expose a pre-defined name, such as > > > "user-push-button", so that the userspace applications can use it > without > > > know any physical GPIO details.

RE: How to use an ACPI declared GPIO in a userspace ...

2020-09-29 Thread Flavio Suligoi
Hi Bartosz, > > I need to expose to the userspace a GPIO, physically connected to a > board > > push-button. This GPIO must expose a pre-defined name, such as > > "user-push-button", so that the userspace applications can use it > without > > know any physical GPIO details. > > > > I can

How to use an ACPI declared GPIO in a userspace ...

2020-09-29 Thread Flavio Suligoi
Hi all, I need to expose to the userspace a GPIO, physically connected to a board push-button. This GPIO must expose a pre-defined name, such as "user-push-button", so that the userspace applications can use it without know any physical GPIO details. I can customize the board BIOS and so my goal

[PATCH v2 7/9] intersil: fix wiki website url

2020-07-23 Thread Flavio Suligoi
In some Intersil files, the wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- v2: the previous version failed to apply: "fatal: corrupt patch at line 97 error: could not build fak

[PATCH v1] drm/i915: Fix spelling mistake in i915_reg.h

2020-07-07 Thread Flavio Suligoi
reg.h file. Signed-off-by: Flavio Suligoi Reviewed-by: Chris Wilson --- v1: add "Reviewed-by: Chris Wilson " drivers/gpu/drm/i915/i915_reg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index

[PATCH v1 1/1] power: supply: axp20x_usb_power: fix spelling mistake

2020-07-06 Thread Flavio Suligoi
Fix typo: "triger" --> "trigger" Signed-off-by: Flavio Suligoi Acked-by: Chen-Yu Tsai --- v1: add Acked-by: Chen-Yu Tsai drivers/power/supply/axp20x_usb_power.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/power/supply/axp20x_usb_power.c

[PATCH] drm/i915: Fix spelling mistake in i915_reg.h

2020-07-03 Thread Flavio Suligoi
reg.h file. Signed-off-by: Flavio Suligoi --- drivers/gpu/drm/i915/i915_reg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index 9d6536afc94b..c2153364724a 100644 --- a/drivers/gpu/drm/i915/i915_reg.h +++

[PATCH v1 1/1] mmc: host: sdhci-msm: fix spelling mistake

2020-07-01 Thread Flavio Suligoi
Fix typo: "trigered" --> "triggered" Signed-off-by: Flavio Suligoi Acked-by: Adrian Hunter --- v1: add Acked-by: Adrian Hunter drivers/mmc/host/sdhci-msm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc

[PATCH 1/1] scsi: storvsc: fix spelling mistake

2020-06-24 Thread Flavio Suligoi
Fix typo: "trigerred" --> "triggered" Signed-off-by: Flavio Suligoi --- drivers/scsi/storvsc_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/storvsc_drv.c b/drivers/scsi/storvsc_drv.c index 624467e2590a..3040696c20dd 100644 --- a/dri

[PATCH 1/1] power: supply: axp20x_usb_power: fix spelling mistake

2020-06-24 Thread Flavio Suligoi
Fix typo: "triger" --> "trigger" Signed-off-by: Flavio Suligoi --- drivers/power/supply/axp20x_usb_power.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/power/supply/axp20x_usb_power.c b/drivers/power/supply/axp20x_usb_power.c index 4fd

[PATCH v2 1/1] PCI: cadence-ep: Remove obsolete path from comment

2020-06-23 Thread Flavio Suligoi
This comment still refers to the old driver pathname, when all PCI drivers were located directly under the drivers/pci directory. Anyway the function name itself is enough, so we can remove the overabundant path reference. Signed-off-by: Flavio Suligoi --- v1: - after the suggestion of Bjorn

RE: [PATCH 1/1] net: wireless: intersil: orinoco: fix spelling mistake

2020-06-22 Thread Flavio Suligoi
Hi Kalle, > > Flavio Suligoi writes: > > > Fix typo: "EZUSB_REQUEST_TRIGER" --> "EZUSB_REQUEST_TRIGGER" > > > > Signed-off-by: Flavio Suligoi > > --- > > drivers/net/wireless/intersil/orinoco/orinoco_usb.c | 6 +++--- > > 1

[PATCH v1 1/1] pci: controller: cadence: fix wrong path in comment

2020-06-22 Thread Flavio Suligoi
This comment still refers to the old driver pathname, when all PCI drivers were located directly under the drivers/pci directory. Anyway the function name itself is enough, so we can remove the overabundant path reference. Signed-off-by: Flavio Suligoi Acked-by: Bjorn Helgaas --- v1: - after

[PATCH 1/1] pci: controller: cadence: fix wrong path in comment

2020-06-19 Thread Flavio Suligoi
All native pci drivers are in drivers/pci/controller, but this comment still refers to the old pathname, when all pci drivers were located directly under the drivers/pci directory. Signed-off-by: Flavio Suligoi --- drivers/pci/controller/cadence/pcie-cadence-ep.c | 2 +- 1 file changed, 1

[PATCH 1/1] net: wireless: intersil: orinoco: fix spelling mistake

2020-06-19 Thread Flavio Suligoi
Fix typo: "EZUSB_REQUEST_TRIGER" --> "EZUSB_REQUEST_TRIGGER" Signed-off-by: Flavio Suligoi --- drivers/net/wireless/intersil/orinoco/orinoco_usb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/wireless/intersil/orinoco/orino

[PATCH 1/1] net: ethernet: oki-semi: pch_gbe: fix spelling mistake

2020-06-19 Thread Flavio Suligoi
Fix typo: "Triger" --> "Trigger" Signed-off-by: Flavio Suligoi --- drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe.h b/drivers/net/ethernet/oki-semi/

[PATCH 1/1] net: ethernet: neterion: vxge: fix spelling mistake

2020-06-19 Thread Flavio Suligoi
Fix typo: "trigered" --> "triggered" Signed-off-by: Flavio Suligoi --- drivers/net/ethernet/neterion/vxge/vxge-config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/neterion/vxge/vxge-config.h b/drivers/net/ethernet/neterion/v

[PATCH 1/1] mmc: host: sdhci-msm: fix spelling mistake

2020-06-17 Thread Flavio Suligoi
Fix typo: "trigered" --> "triggered" Signed-off-by: Flavio Suligoi --- drivers/mmc/host/sdhci-msm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c index b277dd7fbdb5..3f615d0ccb61 100644

[PATCH 1/1] media: pci: dt3155: fix spelling mistake

2020-06-16 Thread Flavio Suligoi
Fix typo: "TRIGER" --> "TRIGGER" Signed-off-by: Flavio Suligoi --- drivers/media/pci/dt3155/dt3155.c | 2 +- drivers/media/pci/dt3155/dt3155.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/pci/dt3155/dt3155.c b/drivers/media/pc

[PATCH] arch: sh: smc37c93x: fix spelling mistake

2020-06-15 Thread Flavio Suligoi
Fix typo: "triger" --> "trigger" Signed-off-by: Flavio Suligoi --- arch/sh/include/asm/smc37c93x.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/sh/include/asm/smc37c93x.h b/arch/sh/include/asm/smc37c93x.h index f054c30a171a..891f2f8f2f

[PATCH v1] doc: devicetree: bindings: fix spelling mistake

2020-06-15 Thread Flavio Suligoi
Fix typo: "triger" --> "trigger" Signed-off-by: Flavio Suligoi Acked-by: Guo Ren --- v1: add Acked-by: Guo Ren Documentation/devicetree/bindings/gpio/mediatek,mt7621-gpio.txt | 2 +- .../devicetree/bindings/interrupt-controller/csky,mpintc.txt| 2 +- Documentat

[PATCH] doc: devicetree: bindings: fix spelling mistake

2020-06-11 Thread Flavio Suligoi
Fix typo: "triger" --> "trigger" Signed-off-by: Flavio Suligoi --- Documentation/devicetree/bindings/gpio/mediatek,mt7621-gpio.txt | 2 +- .../devicetree/bindings/interrupt-controller/csky,mpintc.txt| 2 +- Documentation/devicetree/bindings/timer/csky,mptimer.txt

[PATCH 1/1] leds: fix spelling mistake

2020-06-11 Thread Flavio Suligoi
Fix typo: "Tigger" --> "Trigger" Signed-off-by: Flavio Suligoi Reviewed-by: Alexander Dahl --- drivers/leds/led-triggers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/leds/led-triggers.c b/drivers/leds/led-triggers.c index 79e30d2cb7

[PATCH] arm: include: asm: fix spelling mistake

2020-06-10 Thread Flavio Suligoi
Fix typo: "triger" --> "trigger" Signed-off-by: Flavio Suligoi --- arch/arm/include/asm/cti.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/include/asm/cti.h b/arch/arm/include/asm/cti.h index f8500e5d6ea8..ddd7b73a5870 100644 --- a/arc

RE: [PATCH 1/1] tty: fix spelling mistake

2020-06-10 Thread Flavio Suligoi
Hi Jiri, > Subject: Re: [PATCH 1/1] tty: fix spelling mistake > > On 09. 06. 20, 19:37, Joe Perches wrote: > > On Tue, 2020-06-09 at 18:02 +0200, Flavio Suligoi wrote: > >> Fix typo: "tigger" --> "trigger" > > > > Thanks. > >

RE: [PATCH 1/1] tty: fix spelling mistake

2020-06-10 Thread Flavio Suligoi
Hi Joe, > On Tue, 2020-06-09 at 18:02 +0200, Flavio Suligoi wrote: > > Fix typo: "tigger" --> "trigger" > > Thanks. > > fyi: > > $ git grep -w -i tigger Thanks for your suggestion! > drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core

[PATCH 1/1] tools: testing: ftrace: trigger: fix spelling mistake

2020-06-09 Thread Flavio Suligoi
Fix typo: "tigger" --> "trigger" Signed-off-by: Flavio Suligoi --- tools/testing/selftests/ftrace/test.d/trigger/trigger-hist.tc | 2 +- .../selftests/ftrace/test.d/trigger/trigger-stacktrace.tc | 2 +- .../ftrace/test.d/trigger/trigger-trace-marker-hist.tc

[PATCH 1/1] iio: common: fix spelling mistake

2020-06-09 Thread Flavio Suligoi
Fix typo: "tigger" --> "trigger" Signed-off-by: Flavio Suligoi --- drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c b/drivers/iio

[PATCH 1/1] kernel: trace: fix spelling mistake

2020-06-09 Thread Flavio Suligoi
Fix typo: "tigger" --> "trigger" Signed-off-by: Flavio Suligoi --- kernel/trace/trace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index ec44b0e2a19c..597e19b93165 100644 --- a/kernel/trace/trace.c +++

[PATCH 1/1] scsi: mpt3sas: fix spelling mistake

2020-06-09 Thread Flavio Suligoi
Fix typo: "tigger" --> "trigger" Signed-off-by: Flavio Suligoi --- drivers/scsi/mpt3sas/mpt3sas_base.h | 2 +- drivers/scsi/mpt3sas/mpt3sas_trigger_diag.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.h

[PATCH 1/1] tty: fix spelling mistake

2020-06-09 Thread Flavio Suligoi
Fix typo: "tigger" --> "trigger" Signed-off-by: Flavio Suligoi --- drivers/tty/moxa.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/tty/moxa.h b/drivers/tty/moxa.h index 563d2dce80b3..f0a4381b6861 100644 --- a/drivers/tty/moxa.h +++ b/drive

[PATCH 1/1] leds: fix spelling mistake

2020-06-09 Thread Flavio Suligoi
Fix typo: "Tigger" --> "Trigger" Signed-off-by: Flavio Suligoi --- drivers/leds/led-triggers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/leds/led-triggers.c b/drivers/leds/led-triggers.c index 79e30d2cb7a5..0836bf7631ea 100644 --- a/driv

[PATCH 1/9] doc: networking: wireless: fix wiki website url

2020-06-05 Thread Flavio Suligoi
In the files: - regulatory.rst - mac80211-injection.rst the wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- Documentation/networking/mac80211-injection.rst | 2 +- Documentation/netwo

[PATCH 4/9] net: wireless: atmel: fix wiki website url

2020-06-05 Thread Flavio Suligoi
In at76c50x-usb.c the wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- drivers/net/wireless/atmel/at76c50x-usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wir

[PATCH 2/9] net: wireless: fix wiki website url in main Kconfig

2020-06-05 Thread Flavio Suligoi
The wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- drivers/net/wireless/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/Kconfig b/drivers/net/wi

[PATCH 7/9] net: wireless: intersil: fix wiki website url

2020-06-05 Thread Flavio Suligoi
In some Intesil files, the wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- drivers/net/wireless/intersil/Kconfig | 2 +- drivers/net/wireless/intersil/p54/Kconfig

[PATCH 8/9] include: fix wiki website url in netlink interface header

2020-06-05 Thread Flavio Suligoi
The wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- include/uapi/linux/nl80211.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/linux/nl80211.h b/include/uapi/l

[PATCH 6/9] net: wireless: intel: fix wiki website url

2020-06-05 Thread Flavio Suligoi
In some Intel files, the wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- drivers/net/wireless/intel/iwlegacy/4965-mac.c | 2 +- drivers/net/wireless/intel/iwlwifi/Kconfig | 2 +- 2 files c

[PATCH 9/9] net: fix wiki website url mac80211 and wireless files

2020-06-05 Thread Flavio Suligoi
In the files: - net/mac80211/rx.c - net/wireless/Kconfig the wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- net/mac80211/rx.c| 2 +- net/wireless/Kconfig | 2 +- 2 files changed, 2 insert

[PATCH 0/9] net: wireless: fix wireless wiki website url

2020-06-05 Thread Flavio Suligoi
In some files, related to the net wireless sub-system, the wireless wiki URL is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Flavio Suligoi (9): doc: networking: wireless: fix wiki website url net: wireless: fix wiki website url i

[PATCH 5/9] net: wireless: broadcom: fix wiki website url

2020-06-05 Thread Flavio Suligoi
In some b43 files, the wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- drivers/net/wireless/broadcom/b43/main.c | 2 +- drivers/net/wireless/broadcom/b43legacy/main.c | 4 ++-- 2 files c

[PATCH 3/9] net: wireless: ath: fix wiki website url

2020-06-05 Thread Flavio Suligoi
In some ath files, the wiki url is still the old "wireless.kernel.org" instead of the new "wireless.wiki.kernel.org" Signed-off-by: Flavio Suligoi --- drivers/net/wireless/ath/Kconfig | 4 ++-- drivers/net/wireless/ath/ath9k/Kconfig| 5 +++-- drivers/net/wir

[PATCH v1] dt-bindings: leds: fix macro names for pca955x

2020-06-03 Thread Flavio Suligoi
The documentation reports the wrong macro names related to the pca9532 instead of the pca955x Signed-off-by: Flavio Suligoi Acked-by: Rob Herring --- v1: add "Acked-by: Rob Herring " Documentation/devicetree/bindings/leds/leds-pca955x.txt | 6 +++--- 1 file changed, 3 insert

RE: [PATCH] dt-bindings: leds: fix macro names for pca955x

2020-05-26 Thread Flavio Suligoi
> Subject: Re: [PATCH] dt-bindings: leds: fix macro names for pca955x > > On Tue 2020-05-26 09:25:58, Flavio Suligoi wrote: > > > Subject: Re: [PATCH] dt-bindings: leds: fix macro names for pca955x > > > > > > On Tue 2020-05-26 11:20:52, Flavio Suligoi wrot

RE: [PATCH] dt-bindings: leds: fix macro names for pca955x

2020-05-26 Thread Flavio Suligoi
> Subject: Re: [PATCH] dt-bindings: leds: fix macro names for pca955x > > On Tue 2020-05-26 11:20:52, Flavio Suligoi wrote: > > The documentation reports the wrong macro names > > related to the pca9532 instead of the pca955x > > > > Signed-off-by: Flavio Suli

[PATCH] dt-bindings: leds: fix macro names for pca955x

2020-05-26 Thread Flavio Suligoi
The documentation reports the wrong macro names related to the pca9532 instead of the pca955x Signed-off-by: Flavio Suligoi --- Documentation/devicetree/bindings/leds/leds-pca955x.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings

[PATCH] dt-bindings: leds: fix macro names for pca955x

2020-05-26 Thread Flavio Suligoi
The documentation reports the wrong macro names related to the pca9532 instead of the pca955x Signed-off-by: Flavio Suligoi --- Documentation/devicetree/bindings/leds/leds-pca955x.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings

[PATCH v1 1/2] docs: filesystems: add info about efivars content

2020-05-19 Thread Flavio Suligoi
When an EFI variable is reading from: /sys/firmware/efi/efivars (for example using "hexdump"), the first 4 bytes of the output are not the real EFI variable data, but the variable attributes (in little-endian format). Signed-off-by: Flavio Suligoi --- v1: remove added backq

[PATCH v1 2/2] docs: acpi: fix old http link and improve document format

2020-05-19 Thread Flavio Suligoi
The website: http://wiki.minnowboard.org doesn't exist anymore. The same pages are moved to: https://www.elinux.org/Minnowboard Other improvements concern the introduction of some rst semantic markup in the document. Signed-off-by: Flavio Suligoi --- v1: remove added backquotes

[PATCH 1/2] docs: filesystems: add info about efivars content

2020-05-05 Thread Flavio Suligoi
When an EFI variable is reading from: /sys/firmware/efi/efivars (for example using "hexdump"), the first 4 bytes of the output are not the real EFI variable data, but the variable attributes (in little-endian format). Signed-off-by: Flavio Suligoi --- Documentation/filesystems/ef

[PATCH 2/2] docs: acpi: fix old http link and improve document format

2020-05-05 Thread Flavio Suligoi
The website: http://wiki.minnowboard.org doesn't exist anymore. The same pages are moved to: https://www.elinux.org/Minnowboard Other improvements concern the introduction of some rst semantic markup in the document. Signed-off-by: Flavio Suligoi --- Documentation/admin-guide/acpi

[PATCH] Documentation: x86: fix space instead of tab in uefi doc

2020-04-28 Thread Flavio Suligoi
Signed-off-by: Flavio Suligoi --- Documentation/x86/x86_64/uefi.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/x86/x86_64/uefi.rst b/Documentation/x86/x86_64/uefi.rst index 88c3ba3..3b89410 100644 --- a/Documentation/x86/x86_64/uefi.rst +++ b/Documentation

[PATCH] ARM: mm: print L310 cache controller version

2019-06-24 Thread Flavio Suligoi
The knowledge of the cache controller version is very useful during the comparison of the performances of similar boards, with similar CPU but different versions of the L310 controller. Signed-off-by: Flavio Suligoi --- arch/arm/mm/cache-l2x0.c | 28 1 file changed

[PATCH] mtd: spi-nor: change "error reading JEDEC id" from dbg to err

2019-05-24 Thread Flavio Suligoi
In case of SPI error during the reading of the nor Id, the probe fails without any error message related to the JEDEC Id reading procedure. Signed-off-by: Flavio Suligoi --- drivers/mtd/spi-nor/spi-nor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/spi-nor/spi

[PATCH v2] spi: pxa2xx: fix SCR (divisor) calculation

2019-04-12 Thread Flavio Suligoi
clock of 12.5MHz, so the max rate of the SPI device clock is respected. Signed-off-by: Flavio Suligoi Reviewed-by: Jarkko Nikula --- v2: - simplify the code using "DIV_ROUND_UP" v1: - first version drivers/spi/spi-pxa2xx.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletion

  1   2   >