File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ menuconfig FPGA
1010
1111if FPGA
1212
13- module = fpga
13+ module = FPGA
1414module-str = fpga
1515source "subsys/logging/Kconfig.template.log_config"
1616
Original file line number Diff line number Diff line change 1414#include <zephyr/logging/log.h>
1515#include "fpga_altera_agilex_bridge.h"
1616
17- LOG_MODULE_REGISTER (fpga_altera );
17+ LOG_MODULE_REGISTER (fpga_altera , CONFIG_FPGA_LOG_LEVEL );
1818
1919struct fpga_bridge_dev_data {
2020 /* SiP SVC controller */
Original file line number Diff line number Diff line change 5656#define FPGA_ICE40_LEADING_CLOCKS_MIN 8
5757#define FPGA_ICE40_TRAILING_CLOCKS_MIN 49
5858
59- LOG_MODULE_REGISTER (fpga_ice40 );
59+ LOG_MODULE_REGISTER (fpga_ice40 , CONFIG_FPGA_LOG_LEVEL );
6060
6161struct fpga_ice40_data {
6262 uint32_t crc ;
Original file line number Diff line number Diff line change 1515#include <zephyr/logging/log.h>
1616#include <zephyr/sys/sys_io.h>
1717#include <zephyr/sys/util.h>
18- LOG_MODULE_REGISTER (fpga_mpfs );
18+ LOG_MODULE_REGISTER (fpga_mpfs , CONFIG_FPGA_LOG_LEVEL );
1919
2020#define SPI_FLASH_DIRECTORY_OFFSET 0x00000000
2121#define SPI_FLASH_GOLDEN_IMAGE_OFFSET 0x00100400
Original file line number Diff line number Diff line change 1313#include <zephyr/drivers/i2c.h>
1414#include <zephyr/logging/log.h>
1515
16- LOG_MODULE_REGISTER (fpga_slg471x5 );
16+ LOG_MODULE_REGISTER (fpga_slg471x5 , CONFIG_FPGA_LOG_LEVEL );
1717
1818#define SLG471X5_NREG 256
1919
Original file line number Diff line number Diff line change 1616#include <stdio.h>
1717
1818#include <zephyr/logging/log.h>
19- LOG_MODULE_REGISTER (fpga_zynqmp );
19+ LOG_MODULE_REGISTER (fpga_zynqmp , CONFIG_FPGA_LOG_LEVEL );
2020
2121static void power_up_fpga (void )
2222{
You can’t perform that action at this time.
0 commit comments