Skip to content

Commit

Permalink
Linux kernel 6.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-tarassov committed Nov 28, 2023
1 parent 6ebfdc9 commit 77c13af
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 39 deletions.
2 changes: 1 addition & 1 deletion linux-stable
Submodule linux-stable updated from eceb0b to fa1be4
5 changes: 4 additions & 1 deletion patches/fpga-axi-uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,10 @@ static int axi_uart_release(struct device * dev) {
int rc = 0;

if (port) {
rc = uart_remove_one_port(&axi_uart_port_driver, port);
#if LINUX_VERSION_CODE < KERNEL_VERSION(6,5,0)
rc =
#endif
uart_remove_one_port(&axi_uart_port_driver, port);
dev_set_drvdata(dev, NULL);
port->mapbase = 0;
}
Expand Down
Loading

0 comments on commit 77c13af

Please sign in to comment.