[PATCH v2] can: sja1000: plx_pci: add support for ASEM CAN raw device

2018-08-06 Thread Flavio Suligoi
This patch adds support for ASEM opto-isolated dual channels CAN raw device (http://www.asem.it) Signed-off-by: Flavio Suligoi --- v2: - renamed ASEM_... constants to reduce space size; - remove "else" in "plx_pci_reset_asem_dual_can_raw" function to avoid string

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-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, > > 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,

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

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

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-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-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

[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

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"; > > +

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: 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: 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

[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 +

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

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. > >

[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

[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 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: -

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 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

[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

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 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 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] 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 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 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] 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

[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] 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 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 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] 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

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

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

[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 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 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 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 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 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] 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] 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 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 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 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] 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 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 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/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] 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] 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] 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] 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

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

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. > >

[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

[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 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 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] 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

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 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] 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: 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] 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] 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] 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 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

[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 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 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

[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] 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 v2] can: sja1000: plx_pci: add support for ASEM CAN raw device

2018-08-06 Thread Flavio Suligoi
This patch adds support for ASEM opto-isolated dual channels CAN raw device (http://www.asem.it) Signed-off-by: Flavio Suligoi --- v2: - renamed ASEM_... constants to reduce space size; - remove "else" in "plx_pci_reset_asem_dual_can_raw" function to avoid string

[PATCH] net: e1000e: add MAC address kernel cmd line parameter

2019-02-28 Thread Flavio Suligoi
Sometimes, in some embedded systems boards (i.e. ARM boards), the NVM eeprom is not mounted, to save cost and space. In this case it is necessary to bypass the NVM management and directly force the MAC address using a kernel command-line parameter (macaddr). Signed-off-by: Flavio Suligoi

[PATCH v2] net: e1000e: add MAC address kernel cmd line parameter

2019-02-28 Thread Flavio Suligoi
Sometimes, in some embedded systems boards (i.e. ARM boards), the NVM eeprom is not mounted, to save cost and space. In this case it is necessary to bypass the NVM management and directly force the MAC address using a kernel command-line parameter (macaddr). Signed-off-by: Flavio Suligoi v2

[PATCH v3] net: e1000e: add MAC address kernel cmd line parameter

2019-02-28 Thread Flavio Suligoi
Sometimes, in some embedded systems boards (i.e. ARM boards), the NVM eeprom is not mounted, to save cost and space. In this case it is necessary to bypass the NVM management and directly force the MAC address using a kernel command-line parameter (macaddr). Signed-off-by: Flavio Suligoi

Re: [PATCH v3] net: e1000e: add MAC address kernel cmd line parameter

2019-02-28 Thread Flavio Suligoi
> -Original Message- > From: Andrew Lunn > Sent: giovedì 28 febbraio 2019 16:33 > To: Flavio Suligoi > Cc: Jeff Kirsher ; David S . Miller > ; intel-wired-...@lists.osuosl.org; > net...@vger.kernel.org; linux-kernel@vger.kernel.org > Subject: Re: [PATCH v3] net:

RE: [PATCH v3] net: e1000e: add MAC address kernel cmd line parameter

2019-02-28 Thread Flavio Suligoi
> > Hi Andrew, > > > > we produce a lot of boards and we have to change the MAC address, > > from u-boot, for every board. So I must save in the u-boot > > environment (SPI NOR flash) the MAC address for every board. > > Hi Flavio > > u-boot should be able to write the MAC address in the

RE: [PATCH v3] net: e1000e: add MAC address kernel cmd line parameter

2019-03-01 Thread Flavio Suligoi
> >> > Hi Flavio > >> > > >> > u-boot should be able to write the MAC address in the correct part of > >> > device tree. Boards have been doing this a long time. > >> > > >> > Module parameters are considered bad. You should only do it if you > >> > have no other option. Here you do have another

[PATCH] doc: acpi: fix path for acpidbg tool

2019-03-01 Thread Flavio Suligoi
The file: Documentation/acpi/aml-debugger.txt reports an obsolete path for the acpidbg tool. Signed-off-by: Flavio Suligoi --- Documentation/acpi/aml-debugger.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/acpi/aml-debugger.txt b/Documentation/acpi

[PATCH 1/2] dt-bindings: rtc: add battery-low-hw-alarm property

2019-04-03 Thread Flavio Suligoi
alarm" enable the RTC to generate the hw signaling in case of battery-low event. Signed-off-by: Flavio Suligoi --- Documentation/devicetree/bindings/rtc/rtc.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/rtc/rtc.txt b/Documentation/devicetree/bi

[PATCH 2/2] rtc: pcf2127: add battery-low INTn generation

2019-04-03 Thread Flavio Suligoi
reg = <0x51>; battery-low-hw-alarm; status = "okay"; }; }; Signed-off-by: Flavio Suligoi --- drivers/rtc/rtc-pcf2127.c | 33 + 1 file changed, 33 insertions(+) diff --git a/drivers/rtc/rtc-pcf2127.c b/drivers/r

RE: [PATCH 1/2] dt-bindings: rtc: add battery-low-hw-alarm property

2019-04-03 Thread Flavio Suligoi
Hi Alexandre, > Hi, > > On 03/04/2019 16:52:44+0200, Flavio Suligoi wrote: > > Some RTC devices have a battery-low automatic detection circuit. > > The battery-low event is usually reported with: > > > > - a bit change in a RTC status register > > - a hw

RE: [PATCH 2/2] rtc: pcf2127: add battery-low INTn generation

2019-04-03 Thread Flavio Suligoi
Hi Alexandre, > On 03/04/2019 16:52:45+0200, Flavio Suligoi wrote: > > The pcf2127 has an automatic battery-low detection function. > > > > In case of battery-low event, an interrupt generation through > > the pin INTn (active low) can be enabled, setting the fl

RE: [PATCH 1/2] dt-bindings: rtc: add battery-low-hw-alarm property

2019-04-03 Thread Flavio Suligoi
Hi, > On 03/04/2019 15:06:17+0000, Flavio Suligoi wrote: > > Hi Alexandre, > > > > > Hi, > > > > > > On 03/04/2019 16:52:44+0200, Flavio Suligoi wrote: > > > > Some RTC devices have a battery-low automatic detection circ

RE: [PATCH 2/2] rtc: pcf2127: add battery-low INTn generation

2019-04-03 Thread Flavio Suligoi
> > > On 03/04/2019 16:52:45+0200, Flavio Suligoi wrote: > > > > The pcf2127 has an automatic battery-low detection function. > > > > > > > > In case of battery-low event, an interrupt generation through > > > > the pi

RE: [PATCH 2/2] rtc: pcf2127: add battery-low INTn generation

2019-04-03 Thread Flavio Suligoi
Hi, > On 03/04/2019 15:49:03+0000, Flavio Suligoi wrote: > > > Then, you should probably not enable BLIE because this will cause > issues > > > with the alarm functionnality.. It is certainly enough to use > > > RTC_VL_READ periodically. > > > &g

RE: [PATCH 2/2] rtc: pcf2127: add battery-low INTn generation

2019-04-03 Thread Flavio Suligoi
> On 03/04/2019 16:09:14+0000, Flavio Suligoi wrote: > > Hi, > > > > > On 03/04/2019 15:49:03+, Flavio Suligoi wrote: > > > > > Then, you should probably not enable BLIE because this will cause > > > issues > > > > >

RE: [PATCH 1/2] dt-bindings: rtc: add battery-low-hw-alarm property

2019-04-08 Thread Flavio Suligoi
HI, > On 06/04/2019 01:07:13-0500, Rob Herring wrote: > > On Wed, Apr 03, 2019 at 04:52:44PM +0200, Flavio Suligoi wrote: > > > Some RTC devices have a battery-low automatic detection circuit. > > > The battery-low event is usually reported with: > > >

  1   2   >