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
In order to use this in Ubuntu 22 I had to change i2c-ch341-usb.c line 660 from
ch341_dev->irq_descs[i] = irq_to_desc(ch341_dev->irq_base + i);
to
ch341_dev->irq_descs[i] = irq_data_to_desc(irq_get_irq_data(ch341_dev->irq_base + i));
After this it worked fine with my BME280 env sensor.
The text was updated successfully, but these errors were encountered:
What happened before that modification? did it not even compile or how did the error look?
Sorry, something went wrong.
ERROR: modpost: "irq_to_decs" [/home/ecdowney/i2c-ch341-usb-master/i2c-ch341-usb.ko] undefined!
No branches or pull requests
In order to use this in Ubuntu 22 I had to change i2c-ch341-usb.c line 660 from
ch341_dev->irq_descs[i] = irq_to_desc(ch341_dev->irq_base + i);
to
ch341_dev->irq_descs[i] = irq_data_to_desc(irq_get_irq_data(ch341_dev->irq_base + i));
After this it worked fine with my BME280 env sensor.
The text was updated successfully, but these errors were encountered: