Allwinner: bump legacy, current and edge kernels

legacy - 5.15.137 -> 5.15.139
current - 6.1.62 -> 6.1.63
edge - 6.6.1 -> 6.6.2

Updated patches to fix patch application failure. Also rebased the config files
This commit is contained in:
Gunjan Gupta
2023-11-20 22:09:02 +05:30
parent ae80eb7fb5
commit fdf1a7af7f
11 changed files with 19 additions and 19 deletions

View File

@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm 6.1.60 Kernel Configuration
# Linux/arm 6.1.63 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"
CONFIG_CC_IS_GCC=y

View File

@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm 6.6.0 Kernel Configuration
# Linux/arm 6.6.2 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"
CONFIG_CC_IS_GCC=y

View File

@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm 5.15.137 Kernel Configuration
# Linux/arm 5.15.139 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"
CONFIG_CC_IS_GCC=y

View File

@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 6.1.60 Kernel Configuration
# Linux/arm64 6.1.63 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"
CONFIG_CC_IS_GCC=y

View File

@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 6.6.0 Kernel Configuration
# Linux/arm64 6.6.2 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"
CONFIG_CC_IS_GCC=y

View File

@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 5.15.137 Kernel Configuration
# Linux/arm64 5.15.139 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"
CONFIG_CC_IS_GCC=y

View File

@@ -24,17 +24,17 @@ case $BRANCH in
legacy)
declare -g KERNEL_MAJOR_MINOR="5.15" # Major and minor versions of this kernel.
declare -g KERNELBRANCH="tag:v5.15.137"
declare -g KERNELBRANCH="tag:v5.15.139"
;;
current)
declare -g KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel.
declare -g KERNELBRANCH="tag:v6.1.62"
declare -g KERNELBRANCH="tag:v6.1.63"
;;
edge)
declare -g KERNEL_MAJOR_MINOR="6.6" # Major and minor versions of this kernel.
declare -g KERNELBRANCH="tag:v6.6.1"
declare -g KERNELBRANCH="tag:v6.6.2"
;;
esac

View File

@@ -25,17 +25,17 @@ case $BRANCH in
legacy)
declare -g KERNEL_MAJOR_MINOR="5.15" # Major and minor versions of this kernel.
declare -g KERNELBRANCH="tag:v5.15.137"
declare -g KERNELBRANCH="tag:v5.15.139"
;;
current)
declare -g KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel.
declare -g KERNELBRANCH="tag:v6.1.62"
declare -g KERNELBRANCH="tag:v6.1.63"
;;
edge)
declare -g KERNEL_MAJOR_MINOR="6.6" # Major and minor versions of this kernel.
declare -g KERNELBRANCH="tag:v6.6.1"
declare -g KERNELBRANCH="tag:v6.6.2"
;;
esac

View File

@@ -22,7 +22,7 @@ index 86c9ec111b80..47524fdc94f7 100644
- ret = ov5640_sensor_resume(dev);
- if (ret) {
- dev_err(dev, "failed to power on\n");
- goto entity_cleanup;
- goto free_ctrls;
- }
-
- pm_runtime_get_noresume(dev);

View File

@@ -67,14 +67,14 @@ index 44643687f467..2b0878468394 100644
static int ov5640_probe(struct i2c_client *client)
{
struct device *dev = &client->dev;
@@ -3934,36 +3920,18 @@ static int ov5640_probe(struct i2c_client *client)
@@ -3934,36 +3920,17 @@ static int ov5640_probe(struct i2c_client *client)
if (ret)
goto entity_cleanup;
- ret = ov5640_sensor_resume(dev);
- if (ret) {
- dev_err(dev, "failed to power on\n");
- goto entity_cleanup;
- goto free_ctrls;
- }
-
- pm_runtime_set_active(dev);
@@ -88,7 +88,7 @@ index 44643687f467..2b0878468394 100644
ret = v4l2_async_register_subdev_sensor(&sensor->sd);
if (ret)
- goto err_pm_runtime;
+ goto err_controls;
+ goto free_ctrls;
+ pm_runtime_enable(dev);
pm_runtime_set_autosuspend_delay(dev, 1000);
@@ -101,9 +101,9 @@ index 44643687f467..2b0878468394 100644
-err_pm_runtime:
- pm_runtime_put_noidle(dev);
- pm_runtime_disable(dev);
+err_controls:
v4l2_ctrl_handler_free(&sensor->ctrls.handler);
- ov5640_sensor_suspend(dev);
free_ctrls:
v4l2_ctrl_handler_free(&sensor->ctrls.handler);
entity_cleanup:
media_entity_cleanup(&sensor->sd.entity);
mutex_destroy(&sensor->lock);

View File

@@ -33,7 +33,7 @@ index b624153dc057..4ccd92b728d8 100644
- if (ret)
+ if (ret) {
+ dev_err_probe(dev, ret, "Failed to register sensor\n");
goto err_controls;
goto free_ctrls;
+ }
pm_runtime_enable(dev);