Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wireless-ext compilation errors #6

Closed
paralin opened this issue Jul 12, 2016 · 2 comments
Closed

wireless-ext compilation errors #6

paralin opened this issue Jul 12, 2016 · 2 comments

Comments

@paralin
Copy link

paralin commented Jul 12, 2016

Trying your new branch...

In file included from ../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/drv_types.h:39:0,
                 from ../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/os_dep/osdep_service.c:25:
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/rtw_recv.h:266:24: error: field 'irq_prepare_beacon_tasklet' has incomplete type
  struct tasklet_struct irq_prepare_beacon_tasklet;
                        ^
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/rtw_recv.h:267:24: error: field 'recv_tasklet' has incomplete type
  struct tasklet_struct recv_tasklet;
                        ^
In file included from ../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/drv_types.h:41:0,
                 from ../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/os_dep/osdep_service.c:25:
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/rtw_xmit.h:422:24: error: field 'xmit_tasklet' has incomplete type
  struct tasklet_struct xmit_tasklet;
                        ^
In file included from ../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/drv_types.h:39:0,
                 from ../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/os_dep/os_intfs.c:25:
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/rtw_recv.h:266:24: error: field 'irq_prepare_beacon_tasklet' has incomplete type
  struct tasklet_struct irq_prepare_beacon_tasklet;
                        ^
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/rtw_recv.h:267:24: error: field 'recv_tasklet' has incomplete type
  struct tasklet_struct recv_tasklet;
                        ^
In file included from ../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/drv_types.h:41:0,
                 from ../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/os_dep/os_intfs.c:25:
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/include/rtw_xmit.h:422:24: error: field 'xmit_tasklet' has incomplete type
  struct tasklet_struct xmit_tasklet;
                        ^
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/os_dep/os_intfs.c:108:36: error: expected ')' before numeric constant
 module_param(__rtw_initmac, charp, 0644);
                                    ^
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/os_dep/os_intfs.c:109:27: error: expected ')' before 'int'
 module_param(rtw_channel, int, 0644);
                           ^
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/os_dep/os_intfs.c:110:30: error: expected ')' before 'int'
 module_param(rtw_wmm_enable, int, 0644);
                              ^
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/os_dep/os_intfs.c:111:31: error: expected ')' before 'int'
 module_param(rtw_busy_thresh, int, 0644);
                               ^
../rtl8821au-f7cf356d883135e8d7709ac840341b9e2f3d391d/os_dep/os_intfs.c:113:27: error: expected ')' before 'int'
 module_param(rtw_rx_stbc, int, 0644);

Lots of errors, 3.14.65

@ulli-kroll
Copy link
Owner

Ticked close.
Because no wirelss extension in future driver.
And wireless-ext is only for transition.

Sorry for this.

@paralin
Copy link
Author

paralin commented Jul 14, 2016

What? It doesn't compile at all, how do you suggest I fix it

paralin added a commit to skiffos/buildroot that referenced this issue Jul 23, 2016
Switching to the rtl8821au fork at github.com/abperiasamy/rtl8812AU_8821AU_linux.

 - The current fork we are using is maintained by 1 person.
 - The current fork does not work, and there are no plans to fix this:
     - ulli-kroll/rtl8821au#5
     - ulli-kroll/rtl8821au#6
 - In practice, the current fork has numerous instability issues.
 - Our lab switched to the abperiasamy fork a couple months ago and have been very happy with it.
 - The contributor list for the abperiasamy fork contains 21 well-known individuals in the community.
 - The raspberry pi community recommends the abperiasamy fork and uses it extensively.
 - Firmware blobs are not necessary with the new fork.

Signed-off-by: Christian Stewart <christian@paral.in>
paralin added a commit to skiffos/buildroot that referenced this issue Jul 23, 2016
Switching to the rtl8821au fork at github.com/abperiasamy/rtl8812AU_8821AU_linux.

 - The current fork we are using is maintained by 1 person.
 - The current fork does not work, and there are no plans to fix this:
     - ulli-kroll/rtl8821au#5
     - ulli-kroll/rtl8821au#6
 - In practice, the current fork has numerous instability issues.
 - Our lab switched to the abperiasamy fork a couple months ago and have been very happy with it.
 - The contributor list for the abperiasamy fork contains 21 well-known individuals in the community.
 - The raspberry pi community recommends the abperiasamy fork and uses it extensively.
 - Firmware blobs are not necessary with the new fork.

Signed-off-by: Christian Stewart <christian@paral.in>
paralin added a commit to skiffos/buildroot that referenced this issue Jul 23, 2016
Switching to the rtl8821au fork at github.com/abperiasamy/rtl8812AU_8821AU_linux.

 - The current fork we are using is maintained by 1 person.
 - The current fork does not work, and there are no plans to fix this:
     - ulli-kroll/rtl8821au#5
     - ulli-kroll/rtl8821au#6
 - In practice, the current fork has numerous instability issues.
 - Our lab switched to the abperiasamy fork a couple months ago and have been very happy with it.
 - The contributor list for the abperiasamy fork contains 21 well-known individuals in the community.
 - The raspberry pi community recommends the abperiasamy fork and uses it extensively.
 - Firmware blobs are not necessary with the new fork.

Signed-off-by: Christian Stewart <christian@paral.in>
gevans pushed a commit to hashrabbit/buildroot that referenced this issue Jul 24, 2016
Switching to the rtl8821au fork at github.com/abperiasamy/rtl8812AU_8821AU_linux.

 - The current fork we are using is maintained by 1 person.
 - The current fork does not work, and there are no plans to fix this:
     - ulli-kroll/rtl8821au#5
     - ulli-kroll/rtl8821au#6
 - In practice, the current fork has numerous instability issues.
 - Our lab switched to the abperiasamy fork a couple months ago and have been very happy with it.
 - The contributor list for the abperiasamy fork contains 21 well-known individuals in the community.
 - The raspberry pi community recommends the abperiasamy fork and uses it extensively.
 - Firmware blobs are not necessary with the new fork.

Signed-off-by: Christian Stewart <christian@paral.in>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants