[PATCH 0/2] fix handling of incorrect arguments by mipi_dsi_msleep

2024-06-12 Thread Tejas Vipin
mipi_dsi_msleep is currently defined such that it treats ctx as an argument passed by value. In the case of ctx being passed by reference, it doesn't raise an error, but instead evaluates the resulting expression in an undesired manner. Since the majority of the usage of this function passes ctx by

Re: [PATCH 0/2] fix handling of incorrect arguments by mipi_dsi_msleep

2024-06-12 Thread Neil Armstrong
Hi, On Wed, 12 Jun 2024 19:05:41 +0530, Tejas Vipin wrote: > mipi_dsi_msleep is currently defined such that it treats ctx as an > argument passed by value. In the case of ctx being passed by > reference, it doesn't raise an error, but instead evaluates the > resulting expression in an undesired ma