summaryrefslogtreecommitdiff
path: root/cmd/sbc_harness/config/config.h
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-02 13:32:22 -0700
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-02 13:32:22 -0700
commit355d7a495b0ca1a622d600427a8c737f3207a803 (patch)
tree02ab6704d2ad5698c45981162cc2c192ebdee9db /cmd/sbc_harness/config/config.h
parent255baf6db201dcdf8da017d55c577622f217a888 (diff)
parent8dc86e5ec58ec94f7ea8227ee008ded202c4204f (diff)
Merge branch 'lukeshu/irq'
Diffstat (limited to 'cmd/sbc_harness/config/config.h')
-rw-r--r--cmd/sbc_harness/config/config.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/cmd/sbc_harness/config/config.h b/cmd/sbc_harness/config/config.h
index b569cd5..f9c7df2 100644
--- a/cmd/sbc_harness/config/config.h
+++ b/cmd/sbc_harness/config/config.h
@@ -12,11 +12,6 @@
/* W5500 **********************************************************************/
/**
- * How many W5500 chips we have.
- */
-#define CONFIG_W5500_NUM 1
-
-/**
* When allocating an arbitrary local port, what range should it be
* allocated from?
*
@@ -106,7 +101,7 @@ extern const size_t CONFIG_COROUTINE_STACK_SIZE_w5500_irq_cr;
#define CONFIG_COROUTINE_NUM ( \
1 /* usb_common */ + \
1 /* usb_keyboard */ + \
- CONFIG_W5500_NUM /* irq handler */ + \
+ 1 /* W5500 irq handler */ + \
_CONFIG_9P_NUM_SOCKS /* 9P accept()+read() */ + \
(CONFIG_9P_SRV_MAX_REQS*_CONFIG_9P_NUM_SOCKS) /* 9P work+write() */ )