Commit 0ad5fdb0 authored by Federico Vaga's avatar Federico Vaga

Merge branch 'release/v3.0.3' into master

parents 8bef31c9 68bd706f
...@@ -6,6 +6,15 @@ ...@@ -6,6 +6,15 @@
Changelog Changelog
========= =========
3.0.3 - 2020-10-07
==================
Changed
-------
- drv: ZIO device parent is, correctly, the Fine-Delay platform
device. Before it did not have any parent so this change should not
break anything.
3.0.2 - 2020-09-25 3.0.2 - 2020-09-25
================== ==================
......
...@@ -890,6 +890,7 @@ int fd_zio_init(struct fd_dev *fd) ...@@ -890,6 +890,7 @@ int fd_zio_init(struct fd_dev *fd)
/* Mandatory fields */ /* Mandatory fields */
fd->hwzdev->owner = THIS_MODULE; fd->hwzdev->owner = THIS_MODULE;
fd->hwzdev->priv_d = fd; fd->hwzdev->priv_d = fd;
fd->hwzdev->head.dev.parent = &fd->pdev->dev;
err = zio_register_device(fd->hwzdev, "fd", fd->pdev->id); err = zio_register_device(fd->hwzdev, "fd", fd->pdev->id);
if (err) { if (err) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment