From: Maya Nakamura Sent: Saturday, January 26,
2019 12:55 AM
>
> @@ -953,29 +951,27 @@ static void hv_irq_unmask(struct irq_data *data)
>*/
> params->int_target.flags |=
> HV_DEVICE_INTERRUPT_TARGET_PROCESSOR_SET;
> - params->int_t
From: Maya Nakamura Sent: Saturday, January 26,
2019 12:52 AM
>
> Remove a duplicate definition of VP set (hv_vp_set) and use the common
> definition (hv_vpset) that is used in other places.
>
> Change the order of the members in struct hv_pcibus_device so that the
> declaration of retarget_ms
Hi,
We have a bug report [1] that the ipu3 doesn’t work.
Does ipu3 need special userspace to work?
[1] https://bugs.launchpad.net/bugs/1812114
Kai-Heng
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/
From: Dexuan Cui Sent: Wednesday, January 23, 2019 12:51
PM
>
> Add the Hyper-V _DSM command set to the white list of NVDIMM command
> sets.
>
> This command set is documented at
> http://www.uefi.org/RFIC_LIST (see the link to "Virtual NVDIMM 0x1901" on the
> page).
>
> Signed-off-by: Dexua
This patch fixes the checkpatch.pl warning:
WARNING: prefer 'help' over '---help---' for new help texts
Signed-off-by: Cezary Kierzyk
---
drivers/staging/rtlwifi/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtlwifi/Kconfig b/drivers/staging/rtlwifi
Fix the following checkpatch.pl warning:
WARNING: Statements should start on a tabstop
#208: FILE: pci.h:208:
+ /*ASPM*/ u8 const_pci_aspm;
Signed-off-by: Felipe Cardoso Resende
---
drivers/staging/rtlwifi/pci.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-
On Sat, 26 Jan 2019 23:04:02 +0530
Shreeya Patel wrote:
> Both i2c and spi drivers have functions for reading and writing
> to/from registers. Remove this redundant and common code by using
> regmap API.
>
> Signed-off-by: Shreeya Patel
I hadn't previously looked closely at the spi side of thi
On Fri, 25 Jan 2019 22:14:32 -0200
Rodrigo Ribeiro wrote:
> Em sex, 25 de jan de 2019 às 21:46, Rodrigo Ribeiro
> escreveu:
> >
> > Em sex, 25 de jan de 2019 às 06:20, Alexandru Ardelean
> > escreveu:
> > >
> > > On Thu, Jan 24, 2019 at 9:35 PM Rodrigo Ribeiro
> > > wrote:
> > > >
> > > >
On Fri, 25 Jan 2019 10:19:54 +0200
Alexandru Ardelean wrote:
> On Thu, Jan 24, 2019 at 9:35 PM Rodrigo Ribeiro wrote:
> >
> > Remove the checkpatch.pl check:
> >
> > CHECK: 'RESEVERD' may be misspelled - perhaps 'RESERVED'?
>
> Hey,
>
> A bit curios about this one.
> Are you using this chip/
Currently, adt7316 doesn't use multi read and multi write
functions hence remove the redundant code and make the
necessary changes in the code.
Signed-off-by: Shreeya Patel
---
drivers/staging/iio/addac/adt7316-i2c.c | 40 -
drivers/staging/iio/addac/adt7316-spi.c | 31 ++
Both i2c and spi drivers have functions for reading and writing
to/from registers. Remove this redundant and common code by using
regmap API.
Signed-off-by: Shreeya Patel
---
drivers/staging/iio/addac/adt7316-i2c.c | 56 +++---
drivers/staging/iio/addac/adt7316-spi.c | 74 +++--
dr
This patchset consist of some initial patches for heading
towards the regmap implementation and also the final patch
which enables the driver to use regmap API thus removing
the redundant and common code.
Changes in v4
-Rebase against iio's testing branch. Previous series
was rebased against gr
interrupt request is not needed to be present in the bus
structure. It is a good option to pass it as a parameter
in the probe function instead of having it in the bus structure.
Signed-off-by: Shreeya Patel
---
drivers/staging/iio/addac/adt7316-i2c.c | 3 +--
drivers/staging/iio/addac/adt7316-
On Sat, Jan 26, 2019 at 02:25:28PM +, Gareth Wiggins wrote:
> Thanks for the reply i was told to get in touch here. is this even possible?
I do not know, you did not give us much, if any, information to
understand what your problem is.
First off, what hardware is not working with Linux? What
Thanks for the reply i was told to get in touch here. is this even possible?
Regards
Anewuser
Resent to correct email sorry.
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
This patch fixes the checkpatch.pl warning:
WARNING: prefer 'help' over '---help---' for new help texts
Signed-off-by: Cezary Kierzyk
---
drivers/staging/rtlwifi/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtlwifi/Kconfig b/drivers/staging/rtlwifi
Several users have tried to only rely on binderfs to provide binder devices
and set CONFIG_ANDROID_BINDER_DEVICES="" empty. This is a great use-case of
binderfs and one that was always intended to work. However, this is
currently not possible since setting CONFIG_ANDROID_BINDER_DEVICES="" emtpy
wil
Remove the duplicate implementation of cpumask_to_vpset() and use the
shared implementation. Export hv_max_vp_index, which is required by
cpumask_to_vpset().
Apply changes to hv_irq_unmask() based on feedback.
Signed-off-by: Maya Nakamura
---
Changes in v2:
- Remove unnecessary nr_bank initiali
Remove a duplicate definition of VP set (hv_vp_set) and use the common
definition (hv_vpset) that is used in other places.
Change the order of the members in struct hv_pcibus_device so that the
declaration of retarget_msi_interrupt_params is the last member. Struct
hv_vpset, which contains a flexi
This patchset removes a duplicate definition of VP set (hv_vp_set) and
uses the common definition (hv_vpset) that is used in other places. It
changes the order of the members in struct hv_pcibus_device due to
flexible array in hv_vpset.
It also removes the duplicate implementation of cpumask_to_vp
On Fri, Jan 25, 2019 at 07:24:37PM +, Gareth Wiggins wrote:
>
> Hi there
>
> I would really appreciate some help in getting this driver onto my tails usb
> it has persistence enabled.
>
> I have just spent the last 24 hours getting my new WiFi adapter working with
> kali Linux usb. I cou
21 matches
Mail list logo