On Tue, Mar 16, 2021 at 09:26:34PM +0530, Anish Udupa wrote:
> The * of the comment was not aligned properly. Ran checkpatch and
> found the warning. Resolved it in this patch.
>
> Signed-off-by: Anish Udupa
> ---
> drivers/staging/qlge/qlge_main.c | 2 +-
> 1 file changed, 1 insertion(+), 1 del
s/procesing/processing/
Signed-off-by: Bhaskar Chowdhury
---
drivers/staging/wimax/i2400m/driver.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/wimax/i2400m/driver.c
b/drivers/staging/wimax/i2400m/driver.c
index f5186458bb3d..8091106212f9 100644
--- a/dr
Hi,
I'm trying to search other unused code blocks:
grep -r '^\(#ifdef \|#if defined(\|#ifndef \)CONFIG_' drivers/staging/rtl8723bs/
drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c:#if defined(CONFIG_PM)
drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c:#if defined(CONFIG_PM)
drivers/staging/rt
Hi,
I'm trying to search other unused code blocks:
grep -r '^\(#ifdef \|#if defined(\|#ifndef \)CONFIG_' drivers/staging/rtl8723bs/
drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c:#if defined(CONFIG_PM)
drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c:#if defined(CONFIG_PM)
drivers/staging/rt
On Wed, Mar 17, 2021 at 10:59:32AM +0100, Fabio Aiuto wrote:
> Hi,
>
> I'm trying to search other unused code blocks:
>
> grep -r '^\(#ifdef \|#if defined(\|#ifndef \)CONFIG_'
> drivers/staging/rtl8723bs/
>
> drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c:#if defined(CONFIG_PM)
> drivers/sta
Remove related item in TODO list
---
searched for other unused code blocks:
grep -r '^\(#ifdef \|#if defined(\|#ifndef \)CONFIG_' \
drivers/staging/rtl8723bs/
drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c:#if defined(CONFIG_PM)
drivers/sta
On 16/03/2021 22:42, Tong Zhang wrote:
request_irq() wont accept a name which contains slash so we need to
repalce it with something else -- otherwise it will trigger a warning
and the entry in /proc/irq/ will not be created
since the .name might be used by userspace and we don't want to break
us
The IMX8MQ got two VPUs but until now only G1 has been enabled.
This series aim to add the second VPU (aka G2) and provide basic
HEVC decoding support.
To be able to decode HEVC it is needed to add/update some of the
structures in the uapi. In addition of them one HANTRO dedicated
control is requ
Add 'nxp,imx8mq-vpu-ctrl' in the list of possible syscon.
It will used to access to the VPU control registers.
Signed-off-by: Benjamin Gaignard
---
Documentation/devicetree/bindings/mfd/syscon.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/mfd/syscon.y
Introducing G2 hevc video decoder lead to modify the bindings to allow
to get one node per VPUs.
VPUs share one hardware control block which is provided as a phandle on
an syscon.
Each node got now one reg and one interrupt.
Add a compatible for G2 hardware block: nxp,imx8mq-vpu-g2.
To be compatib
In order to be able to share the control hardware block between
VPUs use a syscon instead a ioremap it in the driver.
To keep the compatibility with older DT if 'nxp,imx8mq-vpu-ctrl'
phandle is not found look at 'ctrl' reg-name.
With the method it becomes useless to provide a list of register
names
Add fields and flags as they are defined in
7.4.3.3.1 "General picture parameter set RBSP semantics of the
H.265 ITU specification.
Signed-off-by: Benjamin Gaignard
---
.../userspace-api/media/v4l/ext-ctrls-codec.rst| 14 ++
include/media/hevc-ctrls.h | 4
Add decode params control and it associated structure to regroup
all the information that are needed to decode a reference frame as
it is describe in ITU-T Rec. H.265 section "8.3.2 Decoding process
for reference picture set".
Adapt Cedrus driver to these changes.
Signed-off-by: Benjamin Gaignard
Change hantro_codec_ops run prototype from 'void' to 'int'.
This allow to cancel the job if an error occur while configuring
the hardware.
Signed-off-by: Benjamin Gaignard
---
version 5:
- forward hantro_h264_dec_prepare_run() return value in case
of error
drivers/staging/media/hantro/hantro
Define which HEVC profiles (up to level 5.1) and features
(no scaling, no 10 bits) are supported by the driver.
Signed-off-by: Benjamin Gaignard
---
drivers/staging/media/hantro/hantro.h | 3 ++
drivers/staging/media/hantro/hantro_drv.c | 58 +++
2 files changed, 61 inse
If the variant doesn't offert postprocessed formats make sure it will
be ok.
Signed-off-by: Benjamin Gaignard
---
drivers/staging/media/hantro/hantro.h | 8 ++--
drivers/staging/media/hantro/hantro_postproc.c | 14 ++
drivers/staging/media/hantro/hantro_v4l2.c | 4
The HEVC HANTRO driver needs to know the number of bits to skip at
the beginning of the slice header.
That is a hardware specific requirement so create a dedicated control
that this purpose.
Signed-off-by: Benjamin Gaignard
---
version 5:
- Be even more verbose in control documentation.
- Do no
Make sure that V4L2_PIX_FMT_HEVC_SLICE is correctly handle by v4l2
of the driver.
Signed-off-by: Benjamin Gaignard
---
drivers/staging/media/hantro/hantro_v4l2.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/staging/media/hantro/hantro_v4l2.c
b/drivers/staging/media/hantro/hantro_
Implement all the logic to get G2 hardware decoding HEVC frames.
It support up level 5.1 HEVC stream.
It doesn't support yet 10 bits formats or scaling feature.
Add HANTRO HEVC dedicated control to skip some bits at the beginning
of the slice header. That is very specific to this hardware so can't
Add variant to IMX8M to enable G2/HEVC codec.
Define the capabilities for the hardware up to 3840x2160.
G2 doesn't have postprocessor, use the same clocks and got it
own interruption.
Signed-off-by: Benjamin Gaignard
---
version 5:
- remove useless postproc fields for G2
version 2:
- remove use
Split VPU node in two: one for G1 and one for G2 since they are
different hardware blocks.
Add syscon for hardware control block.
Remove reg-names property that is useless.
Each VPU node only need one interrupt.
Signed-off-by: Benjamin Gaignard
---
version 5:
- use syscon instead of VPU reset
a
On 3/17/21 2:26 AM, Bhaskar Chowdhury wrote:
>
> s/procesing/processing/
>
> Signed-off-by: Bhaskar Chowdhury
Acked-by: Randy Dunlap
> ---
> drivers/staging/wimax/i2400m/driver.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/wimax/i2400m/driver.c
On Mon, Mar 15, 2021 at 06:16:27PM -0700, Li Li wrote:
> From: Li Li
>
> To improve the user experience when switching between recently used
> applications, the background applications which are not currently needed
> are cached in the memory. Normally, a well designed application will not
> cons
On Mon, Mar 15, 2021 at 06:16:28PM -0700, Li Li wrote:
> From: Marco Ballesio
>
> Frozen tasks can't process binder transactions, so a way is required to
> inform transmitting ends of communication failures due to the frozen
> state of their receiving counterparts. Additionally, races are possibl
This patches fixes the checks- 'Alignment should match open parenthesis'
of 'checkpatch.pl'.
Signed-off-by: Mahak Gupta
---
drivers/staging/octeon-usb/octeon-hcd.c | 32 +
1 file changed, 17 insertions(+), 15 deletions(-)
diff --git a/drivers/staging/octeon-usb/octeon-hc
This patches fixes the checks- 'Alignment should match open parenthesis'
of 'checkpatch.pl'.
Signed-off-by: Mahak Gupta
---
drivers/staging/octeon-usb/octeon-hcd.c | 32 +
1 file changed, 17 insertions(+), 15 deletions(-)
diff --git a/drivers/staging/octeon-usb/octeon-hc
This set of patches converts struct and enum names in the
staging/rtl8723bs source code from all caps to lowercase.
The checkpatch.pl script emits many errors and warnings for these
patches, however all of them are caused by the original code.
[PATCH 01/43] Staging: rtl8723bs: fix names in rtw_mlm
This commit converts names of structs / enums
in include/rtw_mlme.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/core/rtw_mlme_ext.c| 2 +-
drivers/staging/rtl8723bs/hal/hal_btcoex.c | 2 +-
drivers/staging/rtl8723bs/include/rtw_mlme.h
This commit converts names of structs / enums
in include/hal_com.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/HalBtcOutSrc.h | 2 +-
drivers/staging/rtl8723bs/hal/hal_btcoex.c | 2 +-
drivers/staging/rtl8723bs/include/hal_com.h | 4 ++--
3
This commit converts names of structs / enums
in include/rtw_eeprom.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/rtw_eeprom.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8723bs/include/rtw_eeprom.
This commit converts names of structs / enums
in include/wlan_bssdef.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/core/rtw_cmd.c | 4 +--
.../staging/rtl8723bs/core/rtw_ioctl_set.c| 6 ++--
drivers/staging/rtl8723bs/hal/hal_intf.c
This commit converts names of structs / enums
in include/rtw_recv.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/rtw_recv.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8723bs/include/rtw_recv.h
b/d
This commit converts names of structs / enums
in include/drv_types.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/drv_types.h | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/rtl8723bs/include/drv_t
This commit converts names of structs / enums
in include/rtw_pwrctrl.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/core/rtw_pwrctrl.c| 4 ++--
drivers/staging/rtl8723bs/include/rtw_pwrctrl.h | 8
2 files changed, 6 insertions(+), 6 del
This commit converts names of structs / enums
in include/rtw_ht.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/rtw_ht.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/rtl8723bs/include/rtw_ht.h
b/d
This commit converts names of structs / enums
in include/rtw_mp.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/rtw_mp.h | 18 +-
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/rtl8723bs/include/
This commit converts names of structs / enums
in include/rtw_cmd.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/rtw_cmd.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8723bs/include/rtw_cmd.h
b/
This commit converts names of structs / enums
in include/rtw_security.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/rtw_security.h | 4 ++--
drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c | 2 +-
drivers/staging/rtl8723bs/os_dep/ioctl_l
This commit converts names of structs / enums
in include/hal_intf.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/hal_com.c | 8 ++---
drivers/staging/rtl8723bs/hal/hal_intf.c | 8 ++---
.../staging/rtl8723bs/hal/rtl8723b_hal_init.c
This commit converts names of structs / enums
in include/osdep_service.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/osdep_service.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8723bs/include/osdep
This commit converts names of structs / enums
in include/rtl8723b_xmit.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c | 8
drivers/staging/rtl8723bs/include/rtl8723b_xmit.h | 2 +-
2 files changed, 5 insertions(+), 5
This commit converts names of structs / enums
in include/hal_com_h2c.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c| 12 ++--
drivers/staging/rtl8723bs/include/hal_com_h2c.h | 2 +-
2 files changed, 7 insertions(+), 7
This commit converts names of structs / enums
in include/HalVerDef.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/hal_com.c | 2 +-
.../staging/rtl8723bs/hal/rtl8723b_hal_init.c | 4 +-
drivers/staging/rtl8723bs/include/HalVerDef.h | 50
This commit converts names of structs / enums
in include/rtl8723b_hal.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c | 4 ++--
drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c| 2 +-
drivers/staging/rtl8723bs/include/rtl872
This commit converts names of structs / enums
in include/hal_phy.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/hal_com_phycfg.c | 2 +-
drivers/staging/rtl8723bs/hal/rtl8723b_phycfg.c | 4 ++--
drivers/staging/rtl8723bs/hal/sdio_halinit.c
This commit converts names of structs / enums
in include/wifi.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/rtw_mlme.h | 8
drivers/staging/rtl8723bs/include/wifi.h | 14 +++---
2 files changed, 11 insertions(+), 11 de
This commit converts names of structs / enums
in include/rtw_mlme_ext.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/core/rtw_mlme_ext.c | 24 -
.../staging/rtl8723bs/include/rtw_mlme_ext.h | 26 +--
drivers/staging/
This commit converts names of structs / enums
in include/rtw_xmit.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/rtw_xmit.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8723bs/include/rtw_xmit.h
b/d
This commit converts names of structs / enums
in include/rtw_rf.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/hal_com_phycfg.c | 8
drivers/staging/rtl8723bs/hal/hal_intf.c | 2 +-
.../staging/rtl8723bs/hal/rtl8723b_phycfg.c
This commit converts names of structs / enums
in include/HalPwrSeqCmd.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/HalPwrSeqCmd.c | 4 ++--
drivers/staging/rtl8723bs/hal/hal_pwr_seq.c | 22 +--
.../staging/rtl8723bs/include
This commit converts names of structs / enums
in include/hal_com_phycfg.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/hal_com_phycfg.c | 4 ++--
drivers/staging/rtl8723bs/include/hal_com_phycfg.h | 8
2 files changed, 6 insertions(
This commit converts names of structs / enums
in include/hal_data.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/hal_data.h | 16
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/rtl8723bs/includ
This commit converts names of structs / enums
in include/sta_info.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/sta_info.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8723bs/include/sta_info.h
This commit converts names of structs / enums
in include/ieee80211.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/ieee80211.h | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/rtl8723bs/include/ie
This commit converts names of structs / enums
in include/rtw_efuse.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
.../staging/rtl8723bs/hal/rtl8723b_hal_init.c | 28 +--
drivers/staging/rtl8723bs/include/hal_data.h | 2 +-
drivers/staging/rtl8723bs/include/
This commit converts names of structs / enums
in include/hal_btcoex.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/include/hal_btcoex.h | 2 +-
drivers/staging/rtl8723bs/include/hal_data.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
This commit converts names of structs / enums
in hal/odm_interface.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/odm_interface.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8723bs/hal/odm_interface.h
This commit converts names of structs / enums
in hal/odm_EdcaTurboCheck.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/odm.h| 2 +-
drivers/staging/rtl8723bs/hal/odm_EdcaTurboCheck.h | 2 +-
2 files changed, 2 insertions(+), 2 de
This commit converts names of structs / enums
in hal/odm_HWConfig.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/odm_HWConfig.c | 2 +-
drivers/staging/rtl8723bs/hal/odm_HWConfig.h | 8
2 files changed, 5 insertions(+), 5 deletions(-)
This commit converts names of structs / enums
in hal/HalBtc8723b1Ant.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/HalBtc8723b1Ant.c | 8
drivers/staging/rtl8723bs/hal/HalBtc8723b1Ant.h | 12 ++--
2 files changed, 10 insertion
This commit converts names of structs / enums
in hal/odm_types.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/odm_HWConfig.c | 6 +++---
drivers/staging/rtl8723bs/hal/odm_HWConfig.h | 8
drivers/staging/rtl8723bs/hal/odm_types.h| 4
This commit converts names of structs / enums
in hal/hal_btcoex.c from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/hal_btcoex.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/rtl8723bs/hal/hal_btcoex
This commit converts names of structs / enums
in hal/HalBtcOutSrc.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
.../staging/rtl8723bs/hal/HalBtc8723b1Ant.c | 148 +-
.../staging/rtl8723bs/hal/HalBtc8723b1Ant.h | 28 ++--
.../staging/rtl8723bs/hal/HalBtc
This commit converts names of structs / enums
in hal/odm_DIG.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/hal_com.c | 2 +-
drivers/staging/rtl8723bs/hal/odm.c | 2 +-
drivers/staging/rtl8723bs/hal/odm.h
This commit converts names of structs / enums
in hal/HalPhyRf.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/HalPhyRf.c | 4 ++--
drivers/staging/rtl8723bs/hal/HalPhyRf.h | 10 +-
drivers/staging/rtl8723bs/hal/HalPhyRf_8723B
This commit converts names of structs / enums
in hal/odm_CfoTracking.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/odm.h | 2 +-
drivers/staging/rtl8723bs/hal/odm_CfoTracking.c | 12 ++--
drivers/staging/rtl8723bs/hal/odm_C
This commit converts names of structs / enums
in hal/odm_DynamicBBPowerSaving.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/odm.h | 2 +-
drivers/staging/rtl8723bs/hal/odm_DynamicBBPowerSaving.c | 4 ++--
drivers/staging/rt
This commit converts names of structs / enums
in hal/odm_NoiseMonitor.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/odm.h | 2 +-
drivers/staging/rtl8723bs/hal/odm_NoiseMonitor.h | 2 +-
2 files changed, 2 insertions(+), 2 deletion
This commit converts names of structs / enums
in hal/HalBtc8723b2Ant.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c | 8
drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.h | 10 +-
2 files changed, 9 insertions(+
This commit converts names of structs / enums
in hal/odm.h from ALL_CAPS format to lowercase
Signed-off-by: Marco Cesati
---
drivers/staging/rtl8723bs/core/rtw_odm.c | 6 +-
.../staging/rtl8723bs/hal/HalHWImg8723B_BB.c | 10 +-
.../staging/rtl8723bs/hal/HalHWImg8723B_BB.h | 6 +-
...
Thanks for sharing those best practices, Dan.
I was wondering if there is a spelling checker for git.
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
On Wed, Mar 17, 2021 at 7:00 PM Christian Brauner
wrote:
> On Mon, Mar 15, 2021 at 06:16:27PM -0700, Li Li wrote:
> > To improve the user experience when switching between recently used
> > applications, the background applications which are not currently needed
> > are cached in the memory. Norma
On Mon, Mar 15, 2021 at 12:37 PM Zhengxun Li wrote:
>
> Hi Shubhrajyoti,
>
> My name is Zhengxun and I am the engineer from Macronix. We are
> using the platform PicoZed 7015/7030 SOM (System On Module),
> which is based on Xilinx Zynq®-7000 All Programmable (AP) SoC to
> verify our Flash driver.
73 matches
Mail list logo