This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/drivers/bluetooth/btwilink.c b/drivers/bluetooth/btwilink.c | |
index cc6f4b7194b2..a557749a509a 100644 | |
--- a/drivers/bluetooth/btwilink.c | |
+++ b/drivers/bluetooth/btwilink.c | |
@@ -304,6 +304,9 @@ static int bt_ti_probe(struct platform_device *pdev) | |
struct hci_dev *hdev; | |
int err; | |
+ if (!st_is_initialized()) | |
+ return -EPROBE_DEFER; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jan 14 09:21:27 raspberrypi kernel: [2744096.553423] ------------[ cut here ]------------ | |
Jan 14 09:21:27 raspberrypi kernel: [2744096.553450] WARNING: CPU: 0 PID: 1832 at fs/sysfs/dir.c:31 sysfs_warn_dup+0x78/0x88 | |
Jan 14 09:21:27 raspberrypi kernel: [2744096.553456] sysfs: cannot create duplicate filename '/devices/platform/soc/3f201000.serial/tty/ttyAMA0/hci0/hci0:65' | |
Jan 14 09:21:27 raspberrypi kernel: [2744096.553460] Modules linked in: binfmt_misc spidev ecb algif_skcipher af_alg tun cmac bnep hci_uart btbcm cdc_ether brcmfmac brcmutil cfg80211 snd_bcm2835 snd_pcm snd_timer snd bcm2835_gpiomem uio_pdrv_genirq fixed uio nhc_routing nhc_udp nhc_mobility bluetooth_6lowpan nhc_ipv6 nhc_hop nhc_fragment nhc_dest 6lowpan bluetooth rfkill ip_tables x_tables ipv6 | |
Jan 14 09:21:27 raspberrypi kernel: [2744096.553604] CPU: 0 PID: 1832 Comm: kworker/u9:1 Tainted: G W 4.9.41-v7+ #1023 | |
Jan 14 09:21:27 raspberrypi kernel: [2744096.553608] Hardware name: BCM2835 | |
Jan 14 09:21:27 raspberrypi kernel: [2744096. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EESchema-DOCLIB Version 2.0 | |
$CMP TLV61225 | |
D 3.3V 400mA Boost Converter | |
$ENDCMP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet manual | |
auto br0 | |
iface br0 inet static | |
address 192.168.75.10 | |
netmask 255.255.255.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
feature@async_destroy enabled | |
feature@empty_bpobj active | |
feature@lz4_compress active | |
feature@spacemap_histogram active | |
feature@enabled_txg active | |
feature@hole_birth active | |
feature@extensible_dataset enabled | |
feature@embedded_data active | |
feature@bookmarks enabled | |
feature@filesystem_limits enabled |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@saana:~# cat /etc/systemd/system/ifup\@bond0.47.service.d/override.conf | |
[Unit] | |
[email protected] | |
[Service] | |
Type=oneshot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@saana:/home/jvsalo# systemctl cat ifup@ | |
# /lib/systemd/system/[email protected] | |
[Unit] | |
Description=ifup for %I | |
After=local-fs.target network-pre.target apparmor.service | |
Before=network.target | |
BindsTo=sys-subsystem-net-devices-%i.device | |
DefaultDependencies=no | |
IgnoreOnIsolate=yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Physical network interfaces | |
auto enp3s0f0 | |
iface enp3s0f0 inet manual | |
bond-master bond0 | |
bond-primary enp3s0f0 enp3s0f1 | |
auto enp3s0f1 | |
iface enp3s0f1 inet manual | |
bond-master bond0 | |
bond-primary enp3s0f0 enp3s0f1 |