On Thu, Feb 02, 2023 at 09:32:54AM +0100, Kevin Brodsky wrote:
On 31/01/2023 12:27, Beata Michalska wrote:
This one does not seem to be tightly coupled with the rest of the patches within the series so maybe pull it out and send separately as I guess it could be already merged ?
I think that's fair yes, if you think it looks good I would just merge it now.
I'd say go ahead and merge it. Thanks!
--- BR B.
Kevin
BR B. On Mon, Dec 12, 2022 at 10:35:36AM +0000, Kevin Brodsky wrote:
Commit "pps: Update compat ioctl handler for compat64" introduced the use of compat_ptr() in pps_cdev_compat_ioctl(), which relied on the implicit inclusion of <asm/compat.h>. compat_ptr() is generally defined in the generic <linux/compat.h>, so make sure to include it explicitly.
Fixes: ("pps: Update compat ioctl handler for compat64") Signed-off-by: Kevin Brodsky kevin.brodsky@arm.com
This is to avoid breaking the build in !PCuABI after patch 8.
drivers/pps/pps.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/pps/pps.c b/drivers/pps/pps.c index 45551c113172..dba5a67a92d1 100644 --- a/drivers/pps/pps.c +++ b/drivers/pps/pps.c @@ -18,6 +18,7 @@ #include <linux/poll.h> #include <linux/pps_kernel.h> #include <linux/slab.h> +#include <linux/compat.h> #include "kc.h" -- 2.38.1
linux-morello mailing list -- linux-morello@op-lists.linaro.org To unsubscribe send an email to linux-morello-leave@op-lists.linaro.org