Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions patches-6.18/0024-phy-add-cix-phy-driver.patch
Original file line number Diff line number Diff line change
Expand Up @@ -1183,9 +1183,9 @@ index 000000000000..111111111111
+ }
+
+ u3phy->ref_clk = devm_clk_get(dev, "ref_clk");
+ if (IS_ERR(u3phy->apb_clk)) {
+ dev_err(dev, "phy apb clock not found\n");
+ return PTR_ERR(u3phy->apb_clk);
+ if (IS_ERR(u3phy->ref_clk)) {
+ dev_err(dev, "phy ref clock not found\n");
+ return PTR_ERR(u3phy->ref_clk);
+ }
+
+ u3phy->base = devm_platform_ioremap_resource(pdev, 0);
Expand Down
2 changes: 1 addition & 1 deletion patches-6.18/0066-add-cix_dst-driver.patch
Original file line number Diff line number Diff line change
Expand Up @@ -12616,7 +12616,7 @@ index 000000000000..111111111111
+ }
+
+ ddr_data = kzalloc(sizeof(*ddr_data), GFP_KERNEL);
+ if (IS_ERR_OR_NULL(vaddr)) {
+ if (!ddr_data) {
+ err = -ENOMEM;
+ goto unmap;
+ }
Expand Down
7 changes: 3 additions & 4 deletions patches-7.0/0024-phy-add-cix-phy-driver.patch
Original file line number Diff line number Diff line change
Expand Up @@ -1183,10 +1183,9 @@ index 000000000000..111111111111
+ }
+
+ u3phy->ref_clk = devm_clk_get(dev, "ref_clk");
+ if (IS_ERR(u3phy->apb_clk)) {
+ dev_err(dev, "phy apb clock not found\n");
+ return PTR_ERR(u3phy->apb_clk);
+ }
+ if (IS_ERR(u3phy->ref_clk)) {
+ dev_err(dev, "phy ref clock not found\n");
+ return PTR_ERR(u3phy->ref_clk);
+
+ u3phy->base = devm_platform_ioremap_resource(pdev, 0);
+ if (IS_ERR(u3phy->base))
Expand Down
2 changes: 1 addition & 1 deletion patches-7.0/0066-add-cix_dst-driver.patch
Original file line number Diff line number Diff line change
Expand Up @@ -12616,7 +12616,7 @@ index 000000000000..111111111111
+ }
+
+ ddr_data = kzalloc(sizeof(*ddr_data), GFP_KERNEL);
+ if (IS_ERR_OR_NULL(vaddr)) {
+ if (!ddr_data) {
+ err = -ENOMEM;
+ goto unmap;
+ }
Expand Down
6 changes: 3 additions & 3 deletions patches-7.1/0024-phy-add-cix-phy-driver.patch
Original file line number Diff line number Diff line change
Expand Up @@ -1183,9 +1183,9 @@ index 000000000000..111111111111
+ }
+
+ u3phy->ref_clk = devm_clk_get(dev, "ref_clk");
+ if (IS_ERR(u3phy->apb_clk)) {
+ dev_err(dev, "phy apb clock not found\n");
+ return PTR_ERR(u3phy->apb_clk);
+ if (IS_ERR(u3phy->ref_clk)) {
+ dev_err(dev, "phy ref clock not found\n");
+ return PTR_ERR(u3phy->ref_clk);
+ }
+
+ u3phy->base = devm_platform_ioremap_resource(pdev, 0);
Expand Down
2 changes: 1 addition & 1 deletion patches-7.1/0066-add-cix_dst-driver.patch
Original file line number Diff line number Diff line change
Expand Up @@ -12616,7 +12616,7 @@ index 000000000000..111111111111
+ }
+
+ ddr_data = kzalloc(sizeof(*ddr_data), GFP_KERNEL);
+ if (IS_ERR_OR_NULL(vaddr)) {
+ if (!ddr_data) {
+ err = -ENOMEM;
+ goto unmap;
+ }
Expand Down