-
Notifications
You must be signed in to change notification settings - Fork 6
Fixes for newer kernels. #4
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
base: master
Are you sure you want to change the base?
Conversation
|
Note: while this allows me to build the modules, I still cannot |
|
|
||
| regmap = devm_regmap_init_i3c(i3cdev, &sbtsi_i3c_regmap_config); | ||
| regmap = devm_regmap_init_i2c(i3cdev, &sbtsi_i3c_regmap_config); | ||
| if (IS_ERR(regmap)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this change?
sbrmi.c
Outdated
|
|
||
| if (rmi_dev->i3cdev) { | ||
| regmap = devm_regmap_init_i3c(rmi_dev->i3cdev, | ||
| regmap = devm_regmap_init_i2c(rmi_dev->i3cdev, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this change?
| } | ||
|
|
||
| static int alert_remove(struct platform_device *pdev) | ||
| static void alert_remove(struct platform_device *pdev) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change should be on basis of Linux kernel version
No description provided.