The branch stable/13 has been updated by dumbbell (ports committer):

URL: 
https://cgit.FreeBSD.org/src/commit/?id=759a62384a17970463d5e111a64e90017d0fd563

commit 759a62384a17970463d5e111a64e90017d0fd563
Author:     Jean-Sébastien Pédron <dumbb...@freebsd.org>
AuthorDate: 2023-01-11 22:23:57 +0000
Commit:     Jean-Sébastien Pédron <dumbb...@freebsd.org>
CommitDate: 2023-02-16 11:55:12 +0000

    linuxkpi: Add `complete` field to `struct dev_pm_ops`
    
    This change breaks the KBI.
    
    Reviewed by:    manu
    Approved by:    manu
    Differential Revision:  https://reviews.freebsd.org/D38085
    
    (cherry picked from commit 0d4d9ee6f0f9379f3de6e2c684dab19922eda705)
---
 sys/compat/linuxkpi/common/include/linux/device.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/compat/linuxkpi/common/include/linux/device.h 
b/sys/compat/linuxkpi/common/include/linux/device.h
index 70015fb7d81f..bf9a0cabd066 100644
--- a/sys/compat/linuxkpi/common/include/linux/device.h
+++ b/sys/compat/linuxkpi/common/include/linux/device.h
@@ -70,6 +70,7 @@ struct class {
 
 struct dev_pm_ops {
        int (*prepare)(struct device *dev);
+       void (*complete)(struct device *dev);
        int (*suspend)(struct device *dev);
        int (*suspend_late)(struct device *dev);
        int (*resume)(struct device *dev);

Reply via email to