Skip to content

Commit

Permalink
Merge pull request #120 from qosmio/qualcommax-6.x-nss-wifi
Browse files Browse the repository at this point in the history
sync 15/5
  • Loading branch information
rmandrad authored May 15, 2024
2 parents de25571 + 9ec2d00 commit f2d0b09
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions config/Config-kernel.in
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ config KERNEL_ARM_PMU
default y if TARGET_armsr_armv8
depends on (arm || aarch64)

config KERNEL_ARM_PMUV3
bool
default y if TARGET_armsr_armv8
depends on (arm_v7 || aarch64) && LINUX_6_6

config KERNEL_RISCV_PMU
bool
select KERNEL_RISCV_PMU_SBI
Expand Down Expand Up @@ -79,6 +84,7 @@ config KERNEL_X86_VSYSCALL_EMULATION
config KERNEL_PERF_EVENTS
bool "Compile the kernel with performance events and counters"
select KERNEL_ARM_PMU if (arm || aarch64)
select KERNEL_ARM_PMUV3 if (arm_v7 || aarch64) && LINUX_6_6
select KERNEL_RISCV_PMU if riscv64

config KERNEL_PROFILING
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,6 @@ static int ag71xx_rx_packets(struct ag71xx *ag, int limit)
int ring_mask = BIT(ring->order) - 1;
int ring_size = BIT(ring->order);
struct list_head rx_list;
struct sk_buff *next;
struct sk_buff *skb;
int done = 0;

Expand Down Expand Up @@ -1379,7 +1378,7 @@ static int ag71xx_rx_packets(struct ag71xx *ag, int limit)

ag71xx_ring_rx_refill(ag);

list_for_each_entry_safe(skb, next, &rx_list, list)
list_for_each_entry(skb, &rx_list, list)
skb->protocol = eth_type_trans(skb, dev);
netif_receive_skb_list(&rx_list);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
};

aliases {
led-boot = &ledctrl3;
led-boot = &ledctrl1;
led-failsafe = &ledctrl1;
led-running = &ledctrl2;
led-upgrade = &ledctrl3;
led-running = &ledctrl3;
led-upgrade = &ledctrl1;
};

chosen {
Expand Down Expand Up @@ -55,6 +55,7 @@
ledctrl2: ledctrl2 {
label = "ledctrl2";
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_HIGH>;
linux,default-trigger = "default-on";
};

ledctrl3: ledctrl3 {
Expand Down

0 comments on commit f2d0b09

Please sign in to comment.