mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-18 22:14:16 +00:00 
			
		
		
		
	FSL SOC fixes for v6.12:
- Fix a "cast to pointer from integer of different size" build error due to IS_ERROR_VALUE() used with something which is not a pointer. - Fix an unused data build warning. -----BEGIN PGP SIGNATURE----- iJIEABYKADoWIQQQ/+b4s5DeF6zCYyNoqS/rAbjdeAUCZv4m/xwcY2hyaXN0b3Bo ZS5sZXJveUBjc2dyb3VwLmV1AAoJEGipL+sBuN14EhQBAM18WZPM03Lmf7FEy+qX ZCLd3DPRF2jXu8TfL83zwS3oAQC6fyYxtq0U2Wbo66TTtmjWfTXMgbK8AebDa92J 4hugDg== =1fza -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEiK/NIGsWEZVxh/FrYKtH/8kJUicFAmcI9+EACgkQYKtH/8kJ Uidt3Q/+MBugJ593wFZ3BMvsinUUJ8i21vJj7pSMZ1QDsiWQiuZtq5yvWv4RfGfc qUiY7kg7mbS4t8+wP5iwAYK6oBqxGV9Jc8XvPyVUrTPsb+MUkDARjSoP9urQTmR+ ndfYbV+sFQuyoxgIBX6+GWVHHXZ9WEz+RgToIzmqbegXEX38AKszPY9XQG+CEGgO BcrgxoViXHLAc8qfg84s64j1WYJCuajDJvF4b5GYjiYsf0WzJZdlkUxEGjslz9/O jdoG2HVtdUwtDcI4r5XnZq9Ck+zuYZNp7ZKXqZYSpbJb7gHEa2+ju3hlpCkeW/gN +mBnp7xxJhhppaISCbwNG3LFRAX814DDcq86XYDbGfMH271Nrv5yUko8t+qwCyBq yCEpXtjVRVPoOkn52CfFAU49Khn3Kdjp38uakpKOJx8NfoNlSX+Sex7gHkUkxjej 4p77tugWoNyev8Gvaoy7b04v6JmRkXvwfjonEGwnNVMOzrokFgihkNziCEcyzaEn 8FITIRmuLbXfBqottBzgeauKhG4W/2zLtjuHeTUP3swV3Zf4WF8+DcXiASVEnULg UYGfWWnGg4dktNDPtAxN558W1qPkf/goOaKG9GYjzvp6HVTc7h2aACnx8HhbnBS7 pzP7fcVlPp0mijfJcSMtIeos4SMP2PYy5GbXvx313z94hQNL0c0= =s55C -----END PGP SIGNATURE----- Merge tag 'soc_fsl-6.12-3' of https://github.com/chleroy/linux into arm/fixes FSL SOC fixes for v6.12: - Fix a "cast to pointer from integer of different size" build error due to IS_ERROR_VALUE() used with something which is not a pointer. - Fix an unused data build warning. * tag 'soc_fsl-6.12-3' of https://github.com/chleroy/linux: soc: fsl: cpm1: qmc: Fix unused data compilation warning soc: fsl: cpm1: qmc: Do not use IS_ERR_VALUE() on error pointers Link: https://lore.kernel.org/r/c954bdb0-0c16-491a-8662-37e58f07208f@csgroup.eu Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
		
						commit
						dec17c8b36
					
				
					 1 changed files with 5 additions and 6 deletions
				
			
		|  | @ -1761,10 +1761,9 @@ static int qmc_qe_init_resources(struct qmc *qmc, struct platform_device *pdev) | |||
| 	 */ | ||||
| 	info = devm_qe_muram_alloc(qmc->dev, UCC_SLOW_PRAM_SIZE + 2 * 64, | ||||
| 				   ALIGNMENT_OF_UCC_SLOW_PRAM); | ||||
| 	if (IS_ERR_VALUE(info)) { | ||||
| 		dev_err(qmc->dev, "cannot allocate MURAM for PRAM"); | ||||
| 		return -ENOMEM; | ||||
| 	} | ||||
| 	if (info < 0) | ||||
| 		return info; | ||||
| 
 | ||||
| 	if (!qe_issue_cmd(QE_ASSIGN_PAGE_TO_DEVICE, qmc->qe_subblock, | ||||
| 			  QE_CR_PROTOCOL_UNSPECIFIED, info)) { | ||||
| 		dev_err(qmc->dev, "QE_ASSIGN_PAGE_TO_DEVICE cmd failed"); | ||||
|  | @ -2056,7 +2055,7 @@ static void qmc_remove(struct platform_device *pdev) | |||
| 	qmc_exit_xcc(qmc); | ||||
| } | ||||
| 
 | ||||
| static const struct qmc_data qmc_data_cpm1 = { | ||||
| static const struct qmc_data qmc_data_cpm1 __maybe_unused = { | ||||
| 	.version = QMC_CPM1, | ||||
| 	.tstate = 0x30000000, | ||||
| 	.rstate = 0x31000000, | ||||
|  | @ -2066,7 +2065,7 @@ static const struct qmc_data qmc_data_cpm1 = { | |||
| 	.rpack = 0x00000000, | ||||
| }; | ||||
| 
 | ||||
| static const struct qmc_data qmc_data_qe = { | ||||
| static const struct qmc_data qmc_data_qe __maybe_unused = { | ||||
| 	.version = QMC_QE, | ||||
| 	.tstate = 0x30000000, | ||||
| 	.rstate = 0x30000000, | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Arnd Bergmann
						Arnd Bergmann