From: Clayton Craft <clayton@craftyguy.net>
To: ofono@ofono.org
Subject: Re: [PATCH 1/1] udev: add serial_info struct to modem
Date: Sat, 09 Sep 2017 10:40:33 -0700 [thread overview]
Message-ID: <20170909174033.GC3@computer.craftyguy.net> (raw)
In-Reply-To: <20170909090519.20523-1-jonas@southpole.se>
[-- Attachment #1: Type: text/plain, Size: 2595 bytes --]
Hi Jonas,
This looks MUCH better!! Just to re-cap, it took the application of
all three of the patches you sent over to get this to finally come up.
ofonod[1800]: plugins/nokia-gpio.c:phonet_status_cb() Link phonet0 (2) is down
ofonod[1800]: plugins/nokia-gpio.c:gpio_power_state_machine() (POWER_EVENT_PHONET_LINK_DOWN) @ state POWER_STATE_NONE
ofonod[1800]: plugins/nokia-gpio.c:gpio_power_set_state() (POWER_STATE_OFF) at (POWER_STATE_NONE)
ofonod[1800]: plugins/nokia-gpio.c:gpio_finish_modem_power_off()
ofonod[1800]: plugins/nokia-gpio.c:gpio_write() ("cmt_apeslpx", "inactive")
ofonod[1800]: plugins/nokia-gpio.c:gpio_write() ("cmt_rst_rq", "inactive")
ofonod[1800]: plugins/nokia-gpio.c:gpio_write() ("cmt_en", "inactive")
ofonod[1800]: plugins/nokia-gpio.c:gpio_write() ("cmt_rst", "inactive")
ofonod[1800]: plugins/nokia-gpio.c:gpio_write() ("cmt_rst", "active")
ofonod[1800]: plugins/n900.c:n900_power_cb() power state POWER_STATE_OFF
ofonod[1800]: plugins/n900.c:n900_enable() modem=0x617ad0 with 0x617cd0
localhost:/home/user/ofono# python2 test/list-modems
[ /n900_2 ]
Features = sim
Emergency = 0
Powered = 1
Lockdown = 0
Interfaces = org.ofono.SimManager org.ofono.VoiceCallManager org.ofono.AudioSettings
Online = 0
Model = Nokia N900
Revision = V ICPR82_10w08
25-02-10
RX-51
(c) Nokia
Type = hardware
Serial = 356938037199412
Manufacturer = Nokia
[ org.ofono.SimManager ]
Present = 0
[ org.ofono.VoiceCallManager ]
EmergencyNumbers = 08 000 999 110 112 911 118 119
[ org.ofono.AudioSettings ]
Active = 0
Going to test some of the more 'advanced' features now :)
-Clayton
On Sat, Sep 09, 2017 at 11:05:19AM +0200, Jonas Bonn wrote:
>---
>Hi Clayton,
>
>Sorry, I messed up the earlier patch. It should be like this, I think.
>
>/Jonas
>
> plugins/udevng.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/plugins/udevng.c b/plugins/udevng.c
>index 5767259..a4b99aa 100644
>--- a/plugins/udevng.c
>+++ b/plugins/udevng.c
>@@ -1355,7 +1355,7 @@ static void add_serial_device(struct udev_device *dev)
> info->subsystem = g_strdup(subsystem);
> info->dev = udev_device_ref(dev);
>
>- modem->devices = g_slist_append(modem->devices, info);
>+ modem->serial = info;
> }
>
> static void add_device(const char *syspath, const char *devname,
>--
>2.9.3
>
>_______________________________________________
>ofono mailing list
>ofono(a)ofono.org
>https://lists.ofono.org/mailman/listinfo/ofono
next prev parent reply other threads:[~2017-09-09 17:40 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-08 0:51 nokia-modem (N900) not detected after migration to udevng Clayton Craft
2017-09-08 1:13 ` Jonas Bonn
2017-09-08 1:17 ` Clayton Craft
2017-09-08 1:29 ` Jonas Bonn
2017-09-08 1:38 ` Clayton Craft
2017-09-08 2:12 ` Jonas Bonn
2017-09-09 3:09 ` Clayton Craft
2017-09-09 8:56 ` [PATCH 1/1] udev: add serial_info struct to modem Jonas Bonn
2017-09-09 9:05 ` Jonas Bonn
2017-09-09 17:40 ` Clayton Craft [this message]
2017-09-09 17:58 ` nokia-modem (N900) not detected after migration to udevng Clayton Craft
2017-09-09 18:29 ` Denis Kenzior
2017-09-09 18:43 ` Clayton Craft
2017-09-09 20:34 ` Clayton Craft
2017-09-10 16:41 ` [PATCH 1/1] isimodem: Use correct callback for pin status Clayton Craft
2017-09-10 17:47 ` Denis Kenzior
2017-09-10 18:41 ` Clayton Craft
2017-09-11 15:37 ` Denis Kenzior
2017-09-11 15:44 ` nokia-modem (N900) not detected after migration to udevng Clayton Craft
2017-09-11 18:49 ` Denis Kenzior
2017-09-11 19:54 ` Clayton Craft
2017-09-12 7:51 ` Jonas Bonn
2017-09-12 8:11 ` [PATCH 1/2] udev: fixes for detection of non-USB modems Jonas Bonn
2017-09-12 8:11 ` [PATCH 2/2] udev: isi modems do not use 'Device' property Jonas Bonn
2017-09-12 17:28 ` [PATCH 1/2] udev: fixes for detection of non-USB modems Denis Kenzior
2017-09-08 3:17 ` [PATCH 1/1] udev: devnode is not a required modem property Jonas Bonn
2017-09-08 6:06 ` Clayton Craft
2017-09-08 8:07 ` [PATCH 1/1] udev: set driver for serial drivers Jonas Bonn
2017-09-08 15:25 ` Clayton Craft
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170909174033.GC3@computer.craftyguy.net \
--to=clayton@craftyguy.net \
--cc=ofono@ofono.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox