search for: mfd

Displaying 20 results from an estimated 109 matches for "mfd".

Did you mean: fd
2007 Jun 02
1
OT: Feedback Request: HP Laserjet MFD M3027x and Laserjet 2840 on Linux?
Hello all Sorry for posting my query here, but did not have any success in getting feedback from linuxprinting.org/ openprinting.org forums. Planning to buy a new colour MFD or a Mono MFD & a Colour printer, for small buisiness office use. Could someone give feedback on HP Laserjet MFD M3027x and Laserjet 2840? Do all functions provided by the printers work on Linux? Any kinks? Do Network Fax features of M3027x work on linux? Any problems in scanning & sav...
2016 Oct 06
1
[PATCH v9 17/19] drm/virtio: kconfig: Fix recursive dependency issue.
...ess it is. This also makes sense. > > > >> > >> Is there something that requires such a different/unusual behaviour in > >> remoteproc ? > >> > > > > I'm not sure it is that unusual...looking at config USB, it selects USB_COMMON in > > mfd subsystem, client drivers select MFD_CORE. > > > On the USB case I'm not sure what the reasoning behind the USB vs > USB_COMMON split. In seems that one could just fold them, but that's > another topic. On the MFD side... it follows the select {,mis,ab}use. > With one (the...
2016 Oct 06
1
[PATCH v9 17/19] drm/virtio: kconfig: Fix recursive dependency issue.
...ess it is. This also makes sense. > > > >> > >> Is there something that requires such a different/unusual behaviour in > >> remoteproc ? > >> > > > > I'm not sure it is that unusual...looking at config USB, it selects USB_COMMON in > > mfd subsystem, client drivers select MFD_CORE. > > > On the USB case I'm not sure what the reasoning behind the USB vs > USB_COMMON split. In seems that one could just fold them, but that's > another topic. On the MFD side... it follows the select {,mis,ab}use. > With one (the...
2016 Sep 13
2
understanding an error message
...n configured a unc path for to store to. All was working well for a while. Then the scanner stopped storing to the samba share. Initial analysis seemed to indicate that the username/password was failing. So I reset it and again, the machine started working. (NOTE, these are changes to the toshiba MFD, not samba or samba-ad) Again, the scanner stopped storing files to the samba server. So I look in the samba logs and see this: [2016/09/12 12:47:13.387013, 3] ../source3/smbd/process.c:1538(switch_message) switch message SMBtdis (pid 9099) conn 0x7f88d8a835e0 [2016/09/12 12:47:13.387069, 3]...
2013 Mar 21
4
[PATCH] btrfs-progs: make btrfs dev scan multi path aware
...dev(int argc, char **argv) { - int i, fd, e; + int i, fd, e, ret = 0; int checklist = 1; int devstart = 1; @@ -197,6 +197,21 @@ static int cmd_scan_dev(int argc, char **argv) devstart += 1; } + fd = open("/dev/btrfs-control", O_RDWR); + e = errno; + if (fd < 0) { + FILE *mfd = popen("lsmod | grep btrfs", "r"); + char buf[16]; + + if (fread (buf, 1, sizeof (buf), mfd) > 0) + fprintf(stderr, "ERROR: failed to open "\ + "/dev/btrfs-control - %s\n", strerror(e)); + else + fprintf(stderr, "ERROR: btrfs kernel module...
2016 Jul 31
2
failure to authenticate from a Toshiba MFD
I have a toshiba multifunction device that can save to an smb share. For years its been saving to an windows server. I'm trying to move it to samba 4.x. My samba 4 is running an samba AD DC on a machine called vc1. The samba 4 file services is running on a system called srv1. I've made the share on the srv1 smb.conf and have been able to connect to it using the smbclient tool. I've
2015 Mar 16
0
[PATCH 00/35 linux-next] constify of_device_id array
...ce_id array ide: pmac: constify of_device_id array spi: constify of_device_id array video: constify of_device_id array coresight-replicator: constify of_device_id array macintosh: constify of_device_id array virtio_mmio: constify of_device_id array swim3: constify of_device_id array mfd: constify of_device_id array soc: ti: constify of_device_id array [media]: constify of_device_id array Input: constify of_device_id array PCI: constify of_device_id array hwmon: constify of_device_id array reset: sti: constify of_device_id array uio: constify of_device_id array gpu:...
2015 Mar 16
0
[PATCH 00/35 linux-next] constify of_device_id array
...ce_id array ide: pmac: constify of_device_id array spi: constify of_device_id array video: constify of_device_id array coresight-replicator: constify of_device_id array macintosh: constify of_device_id array virtio_mmio: constify of_device_id array swim3: constify of_device_id array mfd: constify of_device_id array soc: ti: constify of_device_id array [media]: constify of_device_id array Input: constify of_device_id array PCI: constify of_device_id array hwmon: constify of_device_id array reset: sti: constify of_device_id array uio: constify of_device_id array gpu:...
2007 Sep 26
1
64 bits snmp
Hi all I want to get 64 bit of snmp work in the PAE kernel 1/ ls there any snmp rpm for 64 bits 2/ when i get from source of net-snmp, i compile with ../configure --enable-mfd-rewrites after installation, the snmp can't work. netsnmp_assert !"registration != duplicate" failed agent_registry.c:535 netsnmp_subtree_load() netsnmp_assert !"registration != duplicate" failed agent_registry.c:535 netsnmp_subtree_load() netsnmp_assert !"registrati...
2018 Feb 28
1
[PATCH v2 2/6] PCI: Scan all functions when running over Jailhouse
...n < 256; devfn += stride) { > if (!raw_pci_read(0, busn, devfn, PCI_VENDOR_ID, 2, &l) && > l != 0x0000 && l != 0xffff) { > DBG("Found device at %02x:%02x [%04x]\n", busn, devfn, l); Shouldn't that take the situation into account where the MFD bit is set on a regular devfn, i.e. (devfn % 8) == 0? In that case you'd scan the subfunctions twice. Thanks, tglx
2011 Dec 12
1
calculating logit parameters (odd ratio is exactly one or zero)
...er of logistic regression, I did an exercise through spreadsheet following the procedural example from a literature, or the available spreadsheet (with calculation formula). I ended up with infinity (divided by zero) when the odd ratio is exactly 1 (FD=12) or invalid number when odd ratio is zero (MFD = 0) after log. I am wondering how R through GLM function (particularly logit or logistic regression) treats the odds ratios or log odd ratios that is exatcly one or zeros. The sample data is like this: #HH Fsize FD 1 1.29472 0 2 1.6184 0 3 2.4276 1 4 2.4276 2 5 20.23 2 6 1.6184 3 7 1.820 3 8 0.4...
2006 Oct 22
2
Bug with the new preprocessor
...rset=ISO-8859-1 > jean, please change that one line in filters.c (I too confirm this > change in my symbian build). the mmp file should also be updated by > including the windows.c. I already fixed filters.c in svn and will apply Alfred's patch soon. > I also recommend taking out mfd.c from the mmp file as the ARM cpu is > too slow to support echo cancellation and preprocessing that require > floats. Actually mdf.c can be compiled for fixed-point. Jean-Marc > thanks payu, for the input. i remeber fixing this but i promptly forgot > which filter was not const. &g...
2011 Jan 20
1
[PATCH] change acquire/release_console_sem() to console_lock/unlock()
...t_port *uport, int ch) diff --git a/drivers/staging/msm/msm_fb.c b/drivers/staging/msm/msm_fb.c index 23fa049..a2f29d4 100644 --- a/drivers/staging/msm/msm_fb.c +++ b/drivers/staging/msm/msm_fb.c @@ -347,7 +347,7 @@ static int msm_fb_suspend(struct platform_device *pdev, pm_message_t state) if ((!mfd) || (mfd->key != MFD_KEY)) return 0; - acquire_console_sem(); + console_lock(); fb_set_suspend(mfd->fbi, 1); ret = msm_fb_suspend_sub(mfd); @@ -358,7 +358,7 @@ static int msm_fb_suspend(struct platform_device *pdev, pm_message_t state) pdev->dev.power.power_state = state; }...
2011 Jan 20
1
[PATCH] change acquire/release_console_sem() to console_lock/unlock()
...t_port *uport, int ch) diff --git a/drivers/staging/msm/msm_fb.c b/drivers/staging/msm/msm_fb.c index 23fa049..a2f29d4 100644 --- a/drivers/staging/msm/msm_fb.c +++ b/drivers/staging/msm/msm_fb.c @@ -347,7 +347,7 @@ static int msm_fb_suspend(struct platform_device *pdev, pm_message_t state) if ((!mfd) || (mfd->key != MFD_KEY)) return 0; - acquire_console_sem(); + console_lock(); fb_set_suspend(mfd->fbi, 1); ret = msm_fb_suspend_sub(mfd); @@ -358,7 +358,7 @@ static int msm_fb_suspend(struct platform_device *pdev, pm_message_t state) pdev->dev.power.power_state = state; }...
2011 Jan 20
1
[PATCH] change acquire/release_console_sem() to console_lock/unlock()
...t_port *uport, int ch) diff --git a/drivers/staging/msm/msm_fb.c b/drivers/staging/msm/msm_fb.c index 23fa049..a2f29d4 100644 --- a/drivers/staging/msm/msm_fb.c +++ b/drivers/staging/msm/msm_fb.c @@ -347,7 +347,7 @@ static int msm_fb_suspend(struct platform_device *pdev, pm_message_t state) if ((!mfd) || (mfd->key != MFD_KEY)) return 0; - acquire_console_sem(); + console_lock(); fb_set_suspend(mfd->fbi, 1); ret = msm_fb_suspend_sub(mfd); @@ -358,7 +358,7 @@ static int msm_fb_suspend(struct platform_device *pdev, pm_message_t state) pdev->dev.power.power_state = state; }...
2008 Jan 16
8
PATCH [xenconsoled]: makes pty slave raw early
Hi, on my system (Linux 2.6.18.8 - ia64), if a domain write on the xencons before xenconsole is initialized the domain gets back what it wrote. This patch fixes this issue by making raw the pty slave very early. (I suppose it doesn''t happen with linux as a guest because it takes a little bit of time before writing to xencons). Tristan. _______________________________________________
2006 Oct 23
2
Bug with the new preprocessor
...please change that one line in filters.c (I too confirm this >> change in my symbian build). the mmp file should also be updated by >> including the windows.c. > > I already fixed filters.c in svn and will apply Alfred's patch soon. > >> I also recommend taking out mfd.c from the mmp file as the ARM cpu is >> too slow to support echo cancellation and preprocessing that require >> floats. > > Actually mdf.c can be compiled for fixed-point. > > Jean-Marc > >> thanks payu, for the input. i remeber fixing this but i promptly forgo...
2023 Jul 04
0
[linux-next:master] BUILD REGRESSION 1c6f93977947dbba1fc4d250c4eb8a7d4cfdecf1
...i_dev' drivers/bluetooth/btmtk.c:386:44: error: 'struct hci_dev' has no member named 'dump' drivers/char/mem.c:164:25: error: implicit declaration of function 'unxlate_dev_mem_ptr'; did you mean 'xlate_dev_mem_ptr'? [-Werror=implicit-function-declaration] drivers/mfd/max77541.c:176:18: warning: cast to smaller integer type 'enum max7754x_ids' from 'const void *' [-Wvoid-pointer-to-enum-cast] lib/kunit/executor_test.c:138:4: warning: cast from 'void (*)(const void *)' to 'kunit_action_t *' (aka 'void (*)(void *)') converts...
2017 Feb 17
11
[PATCH 00/35] treewide trivial patches converting pr_warning to pr_warn
...es of pr_warning to pr_warn drivers/input: Convert remaining uses of pr_warning to pr_warn drivers/isdn: Convert remaining uses of pr_warning to pr_warn drivers/macintosh: Convert remaining uses of pr_warning to pr_warn drivers/media: Convert remaining use of pr_warning to pr_warn drivers/mfd: Convert remaining uses of pr_warning to pr_warn drivers/mtd: Convert remaining uses of pr_warning to pr_warn drivers/of: Convert remaining uses of pr_warning to pr_warn drivers/oprofile: Convert remaining uses of pr_warning to pr_warn drivers/platform: Convert remaining uses of pr_warning...
2017 Feb 17
11
[PATCH 00/35] treewide trivial patches converting pr_warning to pr_warn
...es of pr_warning to pr_warn drivers/input: Convert remaining uses of pr_warning to pr_warn drivers/isdn: Convert remaining uses of pr_warning to pr_warn drivers/macintosh: Convert remaining uses of pr_warning to pr_warn drivers/media: Convert remaining use of pr_warning to pr_warn drivers/mfd: Convert remaining uses of pr_warning to pr_warn drivers/mtd: Convert remaining uses of pr_warning to pr_warn drivers/of: Convert remaining uses of pr_warning to pr_warn drivers/oprofile: Convert remaining uses of pr_warning to pr_warn drivers/platform: Convert remaining uses of pr_warning...