From: Marc Kleine-Budde <mkl@pengutronix.de>
To: Wolfgang Grandegger <wg@grandegger.com>
Cc: "Max S." <max@schneidersoft.net>,
"linux-can@vger.kernel.org" <linux-can@vger.kernel.org>
Subject: Re: GS_USB
Date: Mon, 09 Dec 2013 11:52:21 +0100 [thread overview]
Message-ID: <52A5A0E5.4020605@pengutronix.de> (raw)
In-Reply-To: <52A2F30B.6010905@grandegger.com>
[-- Attachment #1: Type: text/plain, Size: 4381 bytes --]
Hello Wolfgang,
thanks for reviewing the driver.
On 12/07/2013 11:06 AM, Wolfgang Grandegger wrote:
>> +static struct gs_can *gs_make_candev(unsigned int channel,
>> > + struct usb_interface *intf)
This function returns a struct gs_can pointer...
>> > +{
>> > + struct gs_can *dev;
>> > + struct net_device *netdev;
>> > + int rc;
>> > + struct gs_device_bt_const *bt_const;
>> > +
>> > + bt_const = kmalloc(sizeof(*bt_const), GFP_KERNEL);
>> > + if (!bt_const)
>> > + return ERR_PTR(-ENOMEM);
> This function does not return an error code, therefore just:
>
> return -ENOMEM;
....so ERR_PTR(-ENOMEM) is correct. The error value "-ENOMEM" has to be
converted to a pointer and this is what ERR_PTR does. The same is true
for the rest of this function.
>
>> > +
>> > + /* fetch bit timing constants */
>> > + rc = usb_control_msg(interface_to_usbdev(intf),
>> > + usb_rcvctrlpipe(interface_to_usbdev(intf), 0),
>> > + GS_USB_BREQ_BT_CONST,
>> > + USB_DIR_IN|USB_TYPE_VENDOR|USB_RECIP_INTERFACE,
>> > + channel,
>> > + 0,
>> > + bt_const,
>> > + sizeof(*bt_const),
>> > + 1000);
>> > +
>> > + if (rc < 0) {
>> > + dev_err(&intf->dev,
>> > + "Couldn't get bit timing const for channel (err=%d)\n",
>> > + rc);
>> > + kfree(bt_const);
>> > + return ERR_PTR(rc);
> return rc; !
>
> Puh, at a closer look there are quite some issues with returning a
> proper return code.
>
>> > + }
>> > +
>> > + /* create netdev */
>> > + netdev = alloc_candev(sizeof(struct gs_can), GS_MAX_TX_URBS);
>> > + if (!netdev) {
>> > + dev_err(&intf->dev, "Couldn't alloc candev\n");
>> > + kfree(bt_const);
>> > + return ERR_PTR(-ENOMEM);
> This function does not return an error code, therefore just:
>
> return -ENOMEM;
>
>> > + }
>> > +
>> > + dev = netdev_priv(netdev);
>> > +
>> > + netdev->netdev_ops = &gs_usb_netdev_ops;
>> > +
>> > + netdev->flags |= IFF_ECHO; /* we support full roundtrip echo */
>> > +
>> > + /* dev settup */
>> > + strcpy(dev->bt_const.name, "gs_usb");
>> > + dev->bt_const.tseg1_min = bt_const->tseg1_min;
>> > + dev->bt_const.tseg1_max = bt_const->tseg1_max;
>> > + dev->bt_const.tseg2_min = bt_const->tseg2_min;
>> > + dev->bt_const.tseg2_max = bt_const->tseg2_max;
>> > + dev->bt_const.sjw_max = bt_const->sjw_max;
>> > + dev->bt_const.brp_min = bt_const->brp_min;
>> > + dev->bt_const.brp_max = bt_const->brp_max;
>> > + dev->bt_const.brp_inc = bt_const->brp_inc;
>> > +
>> > + dev->udev = interface_to_usbdev(intf);
>> > + dev->iface = intf;
>> > + dev->netdev = netdev;
>> > + dev->channel = channel;
>> > +
>> > + init_usb_anchor(&dev->tx_submitted);
>> > + atomic_set(&dev->active_tx_urbs, 0);
>> > + spin_lock_init(&dev->tx_ctx_lock);
>> > + for (rc = 0; rc < GS_MAX_TX_URBS; rc++) {
>> > + dev->tx_context[rc].dev = dev;
>> > + dev->tx_context[rc].echo_id = GS_MAX_TX_URBS;
>> > + }
>> > +
>> > + /* can settup */
>> > + dev->can.state = CAN_STATE_STOPPED;
>> > + dev->can.clock.freq = bt_const->fclk_can;
>> > + dev->can.bittiming_const = &dev->bt_const;
>> > + dev->can.do_set_bittiming = gs_usb_set_bittiming;
>> > +
>> > + dev->can.ctrlmode_supported = 0;
>> > +
>> > + if (bt_const->feature & GS_CAN_FEATURE_LISTEN_ONLY)
>> > + dev->can.ctrlmode_supported |= CAN_CTRLMODE_LISTENONLY;
>> > +
>> > + if (bt_const->feature & GS_CAN_FEATURE_LOOP_BACK)
>> > + dev->can.ctrlmode_supported |= CAN_CTRLMODE_LOOPBACK;
>> > +
>> > + if (bt_const->feature & GS_CAN_FEATURE_TRIPLE_SAMPLE)
>> > + dev->can.ctrlmode_supported |= CAN_CTRLMODE_3_SAMPLES;
>> > +
>> > + if (bt_const->feature & GS_CAN_FEATURE_ONE_SHOT)
>> > + dev->can.ctrlmode_supported |= CAN_CTRLMODE_ONE_SHOT;
>> > +
>> > + kfree(bt_const);
>> > +
>> > + SET_NETDEV_DEV(netdev, &intf->dev);
>> > +
>> > + rc = register_candev(dev->netdev);
>> > + if (rc) {
>> > + free_candev(dev->netdev);
>> > + dev_err(&intf->dev, "Couldn't register candev\n");
>> > + return ERR_PTR(rc);
> return rc; !!!
>
>> > + }
>> > +
>> > + return dev;
>> > +}
Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 259 bytes --]
next prev parent reply other threads:[~2013-12-09 10:52 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-04 12:31 GS_USB Max S.
2013-10-04 13:23 ` GS_USB Marc Kleine-Budde
2013-10-05 20:36 ` GS_USB Wolfgang Grandegger
2013-10-07 14:22 ` GS_USB Max S.
2013-10-07 14:37 ` GS_USB Wolfgang Grandegger
2013-10-07 19:52 ` GS_USB Max S.
2013-10-07 20:30 ` GS_USB Wolfgang Grandegger
2013-11-03 17:12 ` GS_USB Max S.
2013-11-03 19:42 ` GS_USB Wolfgang Grandegger
2013-11-09 23:19 ` GS_USB Wolfgang Grandegger
2013-11-11 2:10 ` GS_USB Max S.
2013-11-11 8:05 ` GS_USB Wolfgang Grandegger
2013-11-11 15:41 ` GS_USB Oliver Hartkopp
[not found] ` <1384199350.3483.20.camel@blackbox>
2013-11-11 21:49 ` GS_USB Oliver Hartkopp
2013-11-15 10:39 ` GS_USB Max S.
2013-11-23 16:05 ` GS_USB Max S.
2013-12-04 21:17 ` GS_USB Max S.
2013-12-05 19:05 ` GS_USB Oliver Hartkopp
2013-12-05 19:07 ` GS_USB Oliver Hartkopp
2013-12-09 17:53 ` GS_USB Max S.
2013-12-05 20:18 ` GS_USB Wolfgang Grandegger
2013-12-05 20:42 ` GS_USB Wolfgang Grandegger
2013-12-07 10:06 ` GS_USB Wolfgang Grandegger
2013-12-09 10:52 ` Marc Kleine-Budde [this message]
2013-12-09 13:15 ` GS_USB Wolfgang Grandegger
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=52A5A0E5.4020605@pengutronix.de \
--to=mkl@pengutronix.de \
--cc=linux-can@vger.kernel.org \
--cc=max@schneidersoft.net \
--cc=wg@grandegger.com \
/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;
as well as URLs for NNTP newsgroup(s).