Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'staging-4.11-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging

Pull staging driver fixes from Greg KH:
"Here are two small build warning fixes for some staging drivers that
Arnd has found on his valiant quest to get the kernel to build
properly with no warnings.

Both of these have been in linux-next this week and resolve the
reported issues"

* tag 'staging-4.11-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging:
staging: octeon: remove unused variable
staging/vc04_services: add CONFIG_OF dependency

+1 -1
-1
drivers/staging/octeon/ethernet-rx.c
··· 336 336 if (likely((port < TOTAL_NUMBER_OF_PORTS) && 337 337 cvm_oct_device[port])) { 338 338 struct net_device *dev = cvm_oct_device[port]; 339 - struct octeon_ethernet *priv = netdev_priv(dev); 340 339 341 340 /* 342 341 * Only accept packets for devices that are
+1
drivers/staging/vc04_services/Kconfig
··· 1 1 config BCM2835_VCHIQ 2 2 tristate "Videocore VCHIQ" 3 3 depends on HAS_DMA 4 + depends on OF 4 5 depends on RASPBERRYPI_FIRMWARE || (COMPILE_TEST && !RASPBERRYPI_FIRMWARE) 5 6 default y 6 7 help