Nicola Corna

Results 47 comments of Nicola Corna

I can confirm that my DCP-L2510D works well (applying #92 on Arch Linux). It currently does not work with 1200DPI printing (everything is simply printed at double the correct size),...

I force-pushed a small fix: now millis() is called only once at the beginning of update_timed_transitions_starts() and its result is saved in millis_value

The solution provided by aldou works on my cyanogenmod 13, thanks!

Unfortunately I have no experience on SVGs other than just using them.

The character device is opened in exclusive mode, and I wanted to have different processes on the DMAs. I also think that a different character device for each DMA is...

Mainly to have one character device per process. In this way each process can work independently on its DMA, as there aren't shared resources which would require synchronization. At the...

No problem, I already knew it was a questionable big change. I'm currently in contact with the Xilinx kernel devs, which have pointed out that the residue is supposed to...

Hi. I'm trying to implement the multi-channel support, but I'm having some problems. I'm using this DT: [...] amba_pl: amba_pl { #address-cells = ; #size-cells = ; compatible = "simple-bus";...

I'm working on a test scratch module right now, I haven't modified this driver yet. It partially works now, I've found that the MCDMA works only with `dmaengine_prep_interleaved_dma` and not...

According to the DMA doc all the channels must be configured before the data comes in. This complicates things, as we would need an extra reset line to keep the...