Re: [PATCH] ARM64: meson-gxl: disable broken eee

2017-07-23 Thread Joseph Kogut
Hi Kevin, I tested on a P212 reference board, which is currently the only GXL based board I have. Before applying the patch, high activity on the ethernet interface would cause the link to break, requiring the interface to be brought down and back up before it would work again. After applying the

[PATCH] ARM64: meson-gxl: disable broken eee

2017-07-06 Thread Joseph Kogut
Meson GXL appears to suffer from the same broken eee issue as GXB, originally fixed by feb3cbea0946. This patch disables the broken energy-efficient ethernet for GXL, avoiding the tx link breakage. Signed-off-by: Joseph Kogut --- arch/arm64/boot/dts/amlogic/meson-gxl.dtsi | 1 + 1 file changed

[PATCH] staging: i2o: iop.c: Fix pointer declarations

2015-06-20 Thread Joseph Kogut
Kernel coding style dictates that pointer declarations have the asterisk next to the data name. Signed-off-by: Joseph Kogut --- drivers/staging/i2o/iop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/i2o/iop.c b/drivers/staging/i2o/iop.c index 23bdbe4

[PATCH] tty: serial: Fix spelling of Medfield

2015-02-28 Thread Joseph Kogut
Changed 'Medfile' to 'Medfield' in Kconfig Signed-off-by: Joseph Kogut --- drivers/tty/serial/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig index d2501f0..7baf98c 100644 --- a/drivers/tty/

Re: [PATCH] tty: serial: Fixed misspelling of 'Medfield' in Kconfig

2015-02-28 Thread Joseph Kogut
My apologies, please disregard this patch. It seems my tree wasn't clean, and another change snuck its way in. On Sun, Mar 1, 2015 at 12:39 AM, Joseph Kogut wrote: > Change 'Medfile' to 'Medfield' > > Signed-off-by: Joseph Kogut > --- > drivers/tty/ser

[PATCH] tty: serial: Fixed misspelling of 'Medfield' in Kconfig

2015-02-28 Thread Joseph Kogut
Change 'Medfile' to 'Medfield' Signed-off-by: Joseph Kogut --- drivers/tty/serial/Kconfig | 2 +- drivers/tty/serial/mfd.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig index d2501f0..7baf98c

[PATCH] tty: serial: s/Medfile/Medfield

2015-02-22 Thread Joseph Kogut
Fixed misspelling of 'Medfield' Signed-off-by: Joseph Kogut --- drivers/tty/serial/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig index d2501f0..7baf98c 100644 --- a/drivers/tty/serial/Kconfig +++ b/d

[PATCH v2] usb: move definition of PCI_VENDOR_ID_SYNOPSYS to linux/pci_ids.h

2015-02-16 Thread Joseph Kogut
Removed FIXME from usb/dwc3/dwc3-pci.c by moving definition of PCI_VENDOR_ID_SYNOPSYS shared with usb/dwc2 to linux/pci_ids.h. Signed-off-by: Joseph Kogut --- drivers/usb/dwc2/pci.c | 1 - drivers/usb/dwc3/dwc3-pci.c | 2 -- include/linux/pci_ids.h | 2 ++ 3 files changed, 2 insertions

Re: [PATCH] usb: move definition of PCI_VENDOR_ID_SYNOPSYS to linux/pci_ids.h

2015-02-16 Thread Joseph Kogut
On Mon, 2015-02-16 at 17:57 -0800, Greg KH wrote: > On Mon, Feb 16, 2015 at 06:45:53PM -0700, Joseph Kogut wrote: > > Signed-off-by: Joseph Kogut > > You need a changelog description here please. > Should I reply inline, or is resending the patch okay? -- To unsubscribe fr

[PATCH] usb: move definition of PCI_VENDOR_ID_SYNOPSYS to linux/pci_ids.h

2015-02-16 Thread Joseph Kogut
Signed-off-by: Joseph Kogut --- drivers/usb/dwc2/pci.c | 1 - drivers/usb/dwc3/dwc3-pci.c | 2 -- include/linux/pci_ids.h | 2 ++ 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/usb/dwc2/pci.c b/drivers/usb/dwc2/pci.c index a4e724b..6646adb 100644 --- a/drivers

Re: [PATCH] usb: dwc3: Moved PCI IDS to linux/pci_ids.h

2015-02-16 Thread Joseph Kogut
It seems that the Synopsys vendor ID is used in usb/dwc2 as well, and the rest of the definitions aren't referenced outside of usb/dwc3. Would the proper approach be to move the Synopsys vendor ID to linux/pci_ids.h, remove the redefinition in usb/dwc2, and remove the fixme? -- To unsubscribe from

[PATCH] usb: dwc3: Moved PCI IDS to linux/pci_ids.h

2015-02-15 Thread Joseph Kogut
Moved DWC3 PCI IDS to linux/pci_ids.h per the FIXME. Signed-off-by: Joseph Kogut --- drivers/usb/dwc3/dwc3-pci.c | 10 +- include/linux/pci_ids.h | 8 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c