:orphan: .. title:: CONFIG_ETH_SAM_GMAC_QUEUES .. kconfig:: CONFIG_ETH_SAM_GMAC_QUEUES CONFIG_ETH_SAM_GMAC_QUEUES ########################## *Number of active hardware TX and RX queues* Type: ``int`` Help ==== .. code-block:: none Select the number of hardware queues used by the driver. Packets will be routed to appropriate queues based on their priority. Direct dependencies =================== \ :kconfig:`ETH_SAM_GMAC ` && \ :kconfig:`NET_L2_ETHERNET ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== At ``/ethernet/Kconfig.sam_gmac:22`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:20`` → ``/ethernet/Kconfig:51`` Menu path: (Top) → Device Drivers → Ethernet Drivers → Atmel SAM Ethernet driver .. code-block:: kconfig config ETH_SAM_GMAC_QUEUES int "Number of active hardware TX and RX queues" range 1 0 if SOC_SERIES_SAME70 || SOC_SERIES_SAMV71 || SOC_SERIES_SAM4E || SOC_SERIES_SAME54 default 1 depends on ETH_SAM_GMAC && NET_L2_ETHERNET help Select the number of hardware queues used by the driver. Packets will be routed to appropriate queues based on their priority. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*