We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have Ubuntu 16.04 LTS and Asus PCE-N53 card.
Ubuntu 16.04 LTS
Asus PCE-N53
During building a driver, I had to fix 2 compile errors:
asus-pce-n53-linux/os/linux/../../common/rtmp_mcu.c:558:72: error: passing argument 3 of ‘pci_read_config_word’ from incompatible pointer type [-Werror=incompatible-pointer-types] pci_read_config_word(((POS_COOKIE)pAd->OS_Cookie)->pci_dev, offset, &Configuration); asus-pce-n53-linux/os/linux/../../common/rtmp_mcu.c:578:72: error: passing argument 3 of ‘pci_read_config_word’ from incompatible pointer type [-Werror=incompatible-pointer-types] pci_read_config_word(((POS_COOKIE)pAd->OS_Cookie)->pci_dev, offset, &Configuration);
I had changed this
pci_read_config_word(((POS_COOKIE)pAd->OS_Cookie)->pci_dev, offset, &Configuration);
to this
pci_read_config_word(((POS_COOKIE)pAd->OS_Cookie)->pci_dev, offset, (u16*)&Configuration);
in 2 places of a file rtmp_mcu.c
rtmp_mcu.c
The text was updated successfully, but these errors were encountered:
Probably, worth to add something from here http://askubuntu.com/a/894473/667014 to the install insturctions.
Sorry, something went wrong.
9bb52e9
Noted. Thank you!
@mareksuscak You are welcome :)
No branches or pull requests
I have
Ubuntu 16.04 LTS
andAsus PCE-N53
card.During building a driver, I had to fix 2 compile errors:
I had changed this
to this
in 2 places of a file
rtmp_mcu.c
The text was updated successfully, but these errors were encountered: