quark_se: quark_d2000: do not set native drivers as default

Allow usage of alternative drivers and do not hardcode drivers
to zephyr own implementation.

Change-Id: Ieb55b5dc88b3643f276b7c48facef7f1c1c42fa7
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2015-12-17 13:57:58 -05:00
commit 33ce2c7011
2 changed files with 8 additions and 8 deletions

View file

@ -138,23 +138,23 @@ endif
if WATCHDOG if WATCHDOG
config WDT_DW if WDT_DW
def_bool y
config WDT_DW_BASE_ADDR config WDT_DW_BASE_ADDR
default 0xB0000000 default 0xB0000000
config WDT_DW_IRQ config WDT_DW_IRQ
default 16 default 16
endif
endif endif
if RTC if RTC
config RTC_DW if RTC_DW
def_bool y
config RTC_DW_BASE_ADDR config RTC_DW_BASE_ADDR
default 0xB0000400 default 0xB0000400
config RTC_DW_IRQ config RTC_DW_IRQ
default 2 default 2
endif
endif endif

View file

@ -171,8 +171,7 @@ config SPI_DW_PORT_1_IRQ
endif endif
if WATCHDOG if WATCHDOG
config WDT_DW if WDT_DW
def_bool y
config WDT_DW_CLOCK_GATE config WDT_DW_CLOCK_GATE
def_bool n def_bool n
config WDT_DW_CLOCK_GATE_DRV_NAME config WDT_DW_CLOCK_GATE_DRV_NAME
@ -184,10 +183,10 @@ config WDT_DW_BASE_ADDR
config WDT_DW_IRQ config WDT_DW_IRQ
default 12 default 12
endif endif
endif
if RTC if RTC
config RTC_DW if RTC_DW
def_bool y
config RTC_DW_CLOCK_GATE config RTC_DW_CLOCK_GATE
def_bool n def_bool n
config RTC_DW_CLOCK_GATE_DRV_NAME config RTC_DW_CLOCK_GATE_DRV_NAME
@ -199,6 +198,7 @@ config RTC_DW_BASE_ADDR
config RTC_DW_IRQ config RTC_DW_IRQ
default 11 default 11
endif endif
endif
config KERNEL_INIT_PRIORITY_DEFAULT config KERNEL_INIT_PRIORITY_DEFAULT
default 40 default 40