• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision70e97fd674d669913a4c1be1459fba0fb9d0815d (tree)
Time2020-04-05 22:51:20
AuthorYoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

Fix build error.

Change Summary

Incremental Difference

--- a/drivers/net/ne2000_base.h
+++ b/drivers/net/ne2000_base.h
@@ -122,6 +122,9 @@ typedef struct hw_info_t {
122122 } hw_info_t;
123123
124124 typedef struct dp83902a_priv_data {
125+ u8* base;
126+ u8* data;
127+ u8* reset;
125128 int tx_next; /* First free Tx page */
126129 int tx_int; /* Expecting interrupt from this buffer */
127130 int rx_next; /* First free Rx page */
@@ -129,14 +132,12 @@ typedef struct dp83902a_priv_data {
129132 u32 tx1_key, tx2_key; /* Used to ack when packet sent */
130133 int tx1_len, tx2_len;
131134 bool tx_started, running, hardwired_esa;
135+ u8 esa[6];
132136 void* plf_priv;
133137
134138 /* Buffer allocation */
135139 int tx_buf1, tx_buf2;
136140 int rx_buf_start, rx_buf_end;
137- unsigned char *pbuf;
138- int initialized;
139- int pkey;
140141 #ifdef CONFIG_DM_ETH
141142 int rx_len;
142143 #endif