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
config WDT_DW
def_bool y
if WDT_DW
config WDT_DW_BASE_ADDR
default 0xB0000000
config WDT_DW_IRQ
default 16
endif
endif
if RTC
config RTC_DW
def_bool y
if RTC_DW
config RTC_DW_BASE_ADDR
default 0xB0000400
config RTC_DW_IRQ
default 2
endif
endif

View file

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