* [tiwai-sound:for-next 32/79] sound/pcmcia/vx/vxpocket.c:208:13: error: 'struct vx_core' has no member named 'dev'
@ 2024-08-08 16:20 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2024-08-08 16:20 UTC (permalink / raw)
To: Takashi Iwai; +Cc: oe-kbuild-all, alsa-devel, Jaroslav Kysela
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git for-next
head: 9b88d0890ed9adab413ea991fac90842688e1017
commit: b426b3ba9f6fe17990893c5324727dd217d420b6 [32/79] ALSA: vx_core: Drop unused dev field
config: i386-randconfig-141-20240808 (https://download.01.org/0day-ci/archive/20240809/202408090016.kW0TA6fc-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240809/202408090016.kW0TA6fc-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202408090016.kW0TA6fc-lkp@intel.com/
All errors (new ones prefixed by >>):
sound/pcmcia/vx/vxpocket.c: In function 'vxpocket_config':
>> sound/pcmcia/vx/vxpocket.c:208:13: error: 'struct vx_core' has no member named 'dev'
208 | chip->dev = &link->dev;
| ^~
vim +208 sound/pcmcia/vx/vxpocket.c
6d00a3127972e7 Takashi Iwai 2005-06-30 170
6d00a3127972e7 Takashi Iwai 2005-06-30 171
6d00a3127972e7 Takashi Iwai 2005-06-30 172 /*
6d00a3127972e7 Takashi Iwai 2005-06-30 173 * configuration callback
6d00a3127972e7 Takashi Iwai 2005-06-30 174 */
6d00a3127972e7 Takashi Iwai 2005-06-30 175
15b99ac1729503 Dominik Brodowski 2006-03-31 176 static int vxpocket_config(struct pcmcia_device *link)
6d00a3127972e7 Takashi Iwai 2005-06-30 177 {
af26367f69a474 Takashi Iwai 2005-11-17 178 struct vx_core *chip = link->priv;
7c5af6ffd69bb2 Dominik Brodowski 2009-10-24 179 int ret;
6d00a3127972e7 Takashi Iwai 2005-06-30 180
6d00a3127972e7 Takashi Iwai 2005-06-30 181 snd_printdd(KERN_DEBUG "vxpocket_config called\n");
6d00a3127972e7 Takashi Iwai 2005-06-30 182
6d00a3127972e7 Takashi Iwai 2005-06-30 183 /* redefine hardware record according to the VERSION1 string */
af2b3b503ad1b0 Dominik Brodowski 2006-10-25 184 if (!strcmp(link->prod_id[1], "VX-POCKET")) {
6d00a3127972e7 Takashi Iwai 2005-06-30 185 snd_printdd("VX-pocket is detected\n");
6d00a3127972e7 Takashi Iwai 2005-06-30 186 } else {
6d00a3127972e7 Takashi Iwai 2005-06-30 187 snd_printdd("VX-pocket 440 is detected\n");
6d00a3127972e7 Takashi Iwai 2005-06-30 188 /* overwrite the hardware information */
6d00a3127972e7 Takashi Iwai 2005-06-30 189 chip->hw = &vxp440_hw;
6d00a3127972e7 Takashi Iwai 2005-06-30 190 chip->type = vxp440_hw.type;
6d00a3127972e7 Takashi Iwai 2005-06-30 191 strcpy(chip->card->driver, vxp440_hw.name);
6d00a3127972e7 Takashi Iwai 2005-06-30 192 }
6d00a3127972e7 Takashi Iwai 2005-06-30 193
90abdc3b973229 Dominik Brodowski 2010-07-24 194 ret = pcmcia_request_io(link);
7c5af6ffd69bb2 Dominik Brodowski 2009-10-24 195 if (ret)
db0a5214b8d6cc Takashi Iwai 2014-09-09 196 goto failed_preirq;
7c5af6ffd69bb2 Dominik Brodowski 2009-10-24 197
db0a5214b8d6cc Takashi Iwai 2014-09-09 198 ret = request_threaded_irq(link->irq, snd_vx_irq_handler,
db0a5214b8d6cc Takashi Iwai 2014-09-09 199 snd_vx_threaded_irq_handler,
db0a5214b8d6cc Takashi Iwai 2014-09-09 200 IRQF_SHARED, link->devname, link->priv);
7c5af6ffd69bb2 Dominik Brodowski 2009-10-24 201 if (ret)
db0a5214b8d6cc Takashi Iwai 2014-09-09 202 goto failed_preirq;
7c5af6ffd69bb2 Dominik Brodowski 2009-10-24 203
1ac71e5a35eebe Dominik Brodowski 2010-07-29 204 ret = pcmcia_enable_device(link);
7c5af6ffd69bb2 Dominik Brodowski 2009-10-24 205 if (ret)
7c5af6ffd69bb2 Dominik Brodowski 2009-10-24 206 goto failed;
6d00a3127972e7 Takashi Iwai 2005-06-30 207
dd2e5a156525f1 Dominik Brodowski 2009-11-03 @208 chip->dev = &link->dev;
6d00a3127972e7 Takashi Iwai 2005-06-30 209
9a017a910346af Dominik Brodowski 2010-07-24 210 if (snd_vxpocket_assign_resources(chip, link->resource[0]->start,
9a017a910346af Dominik Brodowski 2010-07-24 211 link->irq) < 0)
6d00a3127972e7 Takashi Iwai 2005-06-30 212 goto failed;
6d00a3127972e7 Takashi Iwai 2005-06-30 213
79ca4f3f625e14 Takashi Iwai 2006-04-12 214 return 0;
6d00a3127972e7 Takashi Iwai 2005-06-30 215
6d00a3127972e7 Takashi Iwai 2005-06-30 216 failed:
db0a5214b8d6cc Takashi Iwai 2014-09-09 217 free_irq(link->irq, link->priv);
db0a5214b8d6cc Takashi Iwai 2014-09-09 218 failed_preirq:
fba395eee7d3f3 Dominik Brodowski 2006-03-31 219 pcmcia_disable_device(link);
15b99ac1729503 Dominik Brodowski 2006-03-31 220 return -ENODEV;
6d00a3127972e7 Takashi Iwai 2005-06-30 221 }
6d00a3127972e7 Takashi Iwai 2005-06-30 222
:::::: The code at line 208 was first introduced by commit
:::::: dd2e5a156525f11754d9b1e0583f6bb49c253d62 pcmcia: remove deprecated handle_to_dev() macro
:::::: TO: Dominik Brodowski <linux@dominikbrodowski.net>
:::::: CC: Dominik Brodowski <linux@dominikbrodowski.net>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-08-08 16:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-08 16:20 [tiwai-sound:for-next 32/79] sound/pcmcia/vx/vxpocket.c:208:13: error: 'struct vx_core' has no member named 'dev' kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox