This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use intrusive_collections::intrusive_adapter; | |
use intrusive_collections::{LinkedList, LinkedListLink}; | |
// A simple struct containing an instrusive link and a value | |
struct Test { | |
link: LinkedListLink, | |
value: isize, | |
} | |
intrusive_adapter!(TestAdapter = Box<Test>: Test { link: LinkedListLink }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/arch/mips/xburst/soc-t23/chip-t23/isvp/common/spi_bus.c b/arch/mips/xburst/soc-t23/chip-t23/isvp/common/spi_bus.c | |
index cd06b8ac7..cc30f332a 100644 | |
--- a/arch/mips/xburst/soc-t23/chip-t23/isvp/common/spi_bus.c | |
+++ b/arch/mips/xburst/soc-t23/chip-t23/isvp/common/spi_bus.c | |
@@ -384,6 +384,27 @@ struct spi_nor_platform_data spi_nor_pdata[] = { | |
#ifdef CONFIG_SPI_QUAD | |
.quad_mode = &flash_quad_mode[0], | |
#endif | |
+ }, | |
+ { |
OlderNewer